次の方法で共有


ResourceMirror.CompareToResource<ItemType,ResourceType> 代理人

定義

ソース項目とリソースを比較する関数。 リソースが項目より小さい項目に関連付けられている場合は、-1 が返されます。 リソースが項目より大きい項目に関連付けられている場合は 1。 リソースが項目に関連付けられている場合は 0。

public delegate int ResourceMirror.CompareToResource<ItemType,ResourceType>(ItemType item, ResourceType resource);
type ResourceMirror.CompareToResource<'ItemType, 'ResourceType> = delegate of 'ItemType * 'ResourceType -> int
Public Delegate Function ResourceMirror.CompareToResource(Of ItemType, ResourceType)(item As ItemType, resource As ResourceType) As Integer 

型パラメーター

ItemType

ソース データの種類。

ResourceType

マネージド リソースの種類。

パラメーター

item
ItemType

ソース データのインスタンス。

resource
ResourceType

リソースのインスタンス。

戻り値

注釈

上記の "小さい" と "大きい" は、Sync に入力されたリストの並べ替えの比較と同じ意味を持つ必要があることに注意してください。

適用対象