NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

SByte.Equals

Determines whether two SByte objects are equal. The SByte type is not CLS compliant. The CLS-compliant alternative is Byte.

[C#]
public override bool Equals(
   object obj
);
[C++]
public: override bool Equals(
   Object* obj
);
[JScript]
public override function Equals(
   obj : Object
) : Boolean;

[Visual Basic] The SByte type cannot be used in Visual Basic.

Parameters [C#, C++, JScript]

obj
The object to compare with this instance.

Return Value [C#, C++, JScript]

true if obj is an SByte with the same byte value as this instance; otherwise, false.

Remarks [C#, C++, JScript]

Overrides Equals.

See Also

SByte Structure | SByte Members | System Namespace | Boolean