ModelCollationComparer.Compare 方法 (IList<String>, IList<String>)
比較兩份指定的 String 物件清單,並傳回整數,這個整數表示這些物件在排序次序中彼此的關聯性。
命名空間: Microsoft.Data.Schema.SchemaModel
組件: Microsoft.Data.Schema (在 Microsoft.Data.Schema.dll 中)
'宣告
Public Function Compare ( _
x As IList(Of String), _
y As IList(Of String) _
) As Integer
public int Compare(
IList<string> x,
IList<string> y
)
public:
virtual int Compare(
IList<String^>^ x,
IList<String^>^ y
) sealed
abstract Compare :
x:IList<string> *
y:IList<string> -> int
override Compare :
x:IList<string> *
y:IList<string> -> int
public final function Compare(
x : IList<String>,
y : IList<String>
) : int
- x
型別:System.Collections.Generic.IList<String>
型別為 string 的 IList<T>,表示來源物件。
- y
型別:System.Collections.Generic.IList<String>
型別為 string 的 IList<T>,表示目標物件。
型別:System.Int32
32 位元帶正負號的整數,表示兩個比較元之間的語彙關係。
值 |
Condition |
---|---|
小於零 |
x 小於 y。 |
零 |
x 等於 y。 |
大於零 |
x 大於 y。 |
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。