String.Compare (String, String, Boolean)
比较两个指定的 String 对象(其中忽略或考虑其大小写),并返回一个整数,指示二者在排序顺序中的相对位置
参数
-
strA
-
Type:
System.String
要比较的第一个字符串。
-
strB
-
Type:
System.String
要比较的第二个字符串。
-
ignoreCase
-
Type:
System.Boolean
若要在比较过程中忽略大小写,则为 true;否则为 false。
返回值为0表示:相等 strA 与 strB 在排序顺序中出现的位置相同。
返回值为-1表示:小于 strA 在排序顺序中位于 strB 之前
返回值为1表示:大于 strA 在排序顺序中位于 strB 之后