StringComparerStatic: BinaryCompare (get)

BinaryCompare

Gets a StringComparer object that provides case-sensitive string comparisons.



 Public Property Get BinaryCompare ( ) As StringComparer

Return Values

StringComparer -  A StringComparer object that is case-sensitive.

Remarks

The comparison is done using the Visual Basic StrComp function with vbBinaryCompare option.

The StringComparer object can be retrieved using the following code.

   Dim c As StringComparer
   Set c = StringComparer.BinaryCompare
 

The instance of the StringComparer object returned is a private class and simply implements the StringComparer interface.

Read Only.

See Also

Project CorLib Overview

Class StringComparerStatic Overview