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!

String.Equals (String)

Determines whether two strings match.

[Visual Basic]
Overloads Shadows Public Function Equals( _
   ByVal value As String _
) As Boolean
[C#]
public new bool Equals(
   string value
);
[C++]
public: new bool Equals(
   String* value
);
[JScript]
public new function Equals(
   value : String
) : Boolean;

Parameters

value
The value to be compared with this instance.

Return Value

Value Condition
true If value is a string, and if both value and this instance are a case-sensitive and match exactly.
false If null.

Remarks

The Equals method compares two strings to determine whether they match exactly and returns a Boolean representation of their relationship. The comparison is case-sensitive. Both the value and this instance must meet the following conditions to be true:

See Also

String Class | String Members | System Namespace | String.Equals Overload List