RuntimeState.StringCompareCollation 方法 | |
比较两个字符串。这个函数被编译器用于字符串比较。
命名空间:
XSharp
程序集:
XSharp.Core (在 XSharp.Core.dll 中) 版本:2.22 GA
语法 STATIC METHOD StringCompareCollation(
strLHS AS STRING,
strRHS AS STRING
) AS LONG
public static int StringCompareCollation(
string strLHS,
string strRHS
)
查看代码参数
- strLHS
- 类型:String
The first string . - strRHS
- 类型:String
The second string.
返回值
类型:
Int32
此函数返回一个数字值,表示字符串在排序中的顺序:
值 | 描述 |
---|
-1 | LHS 在排序中的顺序在 RHS 之前。 |
0 | LHS 在排序中的位置与 RHS 相同。 |
1 | LHS 在排序中的顺序在 RHS 之后。 |
备注
This method only checks for SetCollation and does not check fot SetExact() or the VO13 setting
参见 引用
[Overload:StringCompare] 重载
[P:CollationMode]