C# Class AjScript.ObjectUtilities

Mostrar archivo Open project: ajlopez/AjScript Class Usage Examples

Public Methods

Method Description
GetIndexedValue ( object obj, object indexes ) : object
GetNativeValue ( object obj, string name, object parameters ) : object
GetValue ( object obj, string name ) : object
GetValue ( object obj, string name, object parameters ) : object
IsNumber ( object obj ) : bool
SetIndexedValue ( System array, object indexes, object value ) : void
SetIndexedValue ( object obj, object indexes, object value ) : void
SetValue ( object obj, string name, object value ) : void

Private Methods

Method Description
GetIndexedValue ( IDictionary dictionary, object indexes ) : object
GetIndexedValue ( IList list, object indexes ) : object
GetIndexedValue ( System array, object indexes ) : object

Method Details

GetIndexedValue() public static method

public static GetIndexedValue ( object obj, object indexes ) : object
obj object
indexes object
return object

GetNativeValue() public static method

public static GetNativeValue ( object obj, string name, object parameters ) : object
obj object
name string
parameters object
return object

GetValue() public static method

public static GetValue ( object obj, string name ) : object
obj object
name string
return object

GetValue() public static method

public static GetValue ( object obj, string name, object parameters ) : object
obj object
name string
parameters object
return object

IsNumber() public static method

public static IsNumber ( object obj ) : bool
obj object
return bool

SetIndexedValue() public static method

public static SetIndexedValue ( System array, object indexes, object value ) : void
array System
indexes object
value object
return void

SetIndexedValue() public static method

public static SetIndexedValue ( object obj, object indexes, object value ) : void
obj object
indexes object
value object
return void

SetValue() public static method

public static SetValue ( object obj, string name, object value ) : void
obj object
name string
value object
return void