[This is preliminary documentation and is subject to change.]

Compares two Strings in way determined by the CaseSensitive property

Namespace: Tools.WindowsT.FormsT
Assembly: Tools.Windows (in Tools.Windows.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
protected bool CSCompare(
	string Str1,
	string Str2
)
Visual Basic
Protected Function CSCompare ( _
	Str1 As String, _
	Str2 As String _
) As Boolean
Visual C++
protected:
bool CSCompare(
	String^ Str1, 
	String^ Str2
)
F#
member CSCompare : 
        Str1:string * 
        Str2:string -> bool 
JScript
protected function CSCompare(
	Str1 : String, 
	Str2 : String
) : boolean

Parameters

Str1
Type: System..::..String
String to compare
Str2
Type: System..::..String
String to compare

Return Value

True if parameters match; false otherwise

See Also