Returns a value indicating whether this instance is equal to a specified object.

Namespace:  IBM.CTG
Assembly:  IBM.CTG.Client (in IBM.CTG.Client.dll) Version: 1.0.0.0

Syntax

C#
public override bool Equals(
	Object obj
)
Visual Basic
Public Overrides Function Equals ( _
	obj As Object _
) As Boolean
Visual C++
public:
virtual bool Equals(
	Object^ obj
) override

Parameters

obj
Type: System..::..Object
An object to compare with this instance.

Return Value

trueTruetruetrue (True in Visual Basic) if obj is a CicsServer with the same Name as this instance; otherwise falseFalsefalsefalse (False in Visual Basic).

Remarks

Two CicsServer instances are considered equal if they have the same Name, ignoring case. For example, servers "cicsA" and "CICSA" are considered equal.

See Also