StringType.StrCmp(String, String, Boolean) 方法

定义

比较两个字符串。

此 API 支持产品基础结构,不能在代码中直接使用。

public:
 static int StrCmp(System::String ^ sLeft, System::String ^ sRight, bool TextCompare);
public static int StrCmp (string? sLeft, string? sRight, bool TextCompare);
public static int StrCmp (string sLeft, string sRight, bool TextCompare);
static member StrCmp : string * string * bool -> int
Public Shared Function StrCmp (sLeft As String, sRight As String, TextCompare As Boolean) As Integer
Public Function StrCmp (sLeft As String, sRight As String, TextCompare As Boolean) As Integer

参数

sLeft
String

必需。 要与 sRight 进行比较的字符串。

sRight
String

必需。 要与 sLeft 进行比较的字符串。

TextCompare
Boolean

必需。 如果要执行不区分大小写的比较,则为 True;否则为 False

返回

条件
这两个字符串相等。
小于零 sLeft 小于 sRight
大于零 sLeft 大于 sRight

注解

此类支持 Visual Basic 编译器,不应直接从代码使用。

适用于