Find

Find(object, Type, EachField<T>.OnFind)

public static void Find(object obj, Type type, EachField<T>.OnFind onFind) ;

説明

フィールドを見つける。

パラメーター

パラメーター名 説明
obj オブジェクト
type オブジェクトの型
onFind 見つけた場合のコールバック

Find(object, Type, EachField<T>.OnFindEx)

public static void Find(object obj, Type type, EachField<T>.OnFindEx onFind) ;

説明

フィールドを見つける。

パラメーター

パラメーター名 説明
obj オブジェクト
type オブジェクトの型
onFind 見つけた場合のコールバック

Find(object, Type)

public static List<T> Find(object obj, Type type) ;

説明

フィールドを見つけListで返す。

パラメーター

パラメーター名 説明
obj オブジェクト
type オブジェクトの型

戻り値

見つけた値のリスト

Find(object, Type, List<T>)

public static void Find(object obj, Type type, List<T> list) ;

説明

フィールドを見つけListに追加する。

パラメーター

パラメーター名 説明
obj オブジェクト
type オブジェクトの型
list 格納するList

Find(object, Type, EachField<T>.IFindReceiver)

public static void Find(object obj, Type type, EachField<T>.IFindReceiver receiver) ;

説明

フィールドを見つけIFindReceiverのOnFindを呼ぶ。

パラメーター

パラメーター名 説明
obj オブジェクト
type オブジェクトの型
receiver 受取先