KeysConverter.Compare(Object, Object) 方法

定义

比较两个键值以确定它们是否相效。

public:
 virtual int Compare(System::Object ^ a, System::Object ^ b);
public int Compare (object a, object b);
public int Compare (object? a, object? b);
abstract member Compare : obj * obj -> int
override this.Compare : obj * obj -> int
Public Function Compare (a As Object, b As Object) As Integer

参数

a
Object

Object,表示要比较的第一个键。

b
Object

Object,表示要比较的第二个键。

返回

Int32

一个整数,指示两个参数之间的关系。

值类型 条件
负整数。 a 小于 b
0 a 等于 b
正整数。 a 大于 b

实现

注解

此方法用于 String.Compare 比较这两个对象。

适用于

另请参阅