Operators.CompareObject Method
.NET Framework 3.0
This method supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Represents Visual Basic comparison operators.
Namespace: Microsoft.VisualBasic.CompilerServicesAssembly: Microsoft.VisualBasic (in microsoft.visualbasic.dll)
'Declaration Public Shared Function CompareObject ( _ Left As Object, _ Right As Object, _ TextCompare As Boolean _ ) As Integer 'Usage Dim Left As Object Dim Right As Object Dim TextCompare As Boolean Dim returnValue As Integer returnValue = Operators.CompareObject(Left, Right, TextCompare)
public static int CompareObject ( Object Left, Object Right, boolean TextCompare )
public static function CompareObject ( Left : Object, Right : Object, TextCompare : boolean ) : int
Not applicable.
Parameters
- Left
Required. Any expression.
- Right
Required. Any expression.
- TextCompare
Required. True to perform a case-insensitive string comparison; otherwise, False.
Return Value
| Value | Condition |
|---|---|
| -1 | Left is less than Right. |
| 0 | Left and Right are equal. |
| 1 | Left is greater than Right. |
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: