Find
Find(object, Type, EachField<T>.OnFind)
Description
Find the field.
Parameters
| Parameter Name | Description | 
|---|---|
| obj | Object | 
| type | Type of object | 
| onFind | Callback If you find | 
Find(object, Type, EachField<T>.OnFindEx)
Description
Find the field.
Parameters
| Parameter Name | Description | 
|---|---|
| obj | Object | 
| type | Type of object | 
| onFind | Callback If you find | 
Find(object, Type)
public static List<T> Find(object obj, Type type) ;
Description
Find the field and return it as a List.
Parameters
| Parameter Name | Description | 
|---|---|
| obj | Object | 
| type | Type of object | 
Returns
List of values found
Find(object, Type, List<T>)
public static void Find(object obj, Type type, List<T> list) ;
Description
Find the field and add it to the List.
Parameters
| Parameter Name | Description | 
|---|---|
| obj | Object | 
| type | Type of object | 
| list | List to store | 
Find(object, Type, EachField<T>.IFindReceiver)
Description
Find the field and call OnFind of IFindReceiver.
Parameters
| Parameter Name | Description | 
|---|---|
| obj | Object | 
| type | Type of object | 
| receiver | Receiver |