ToNativeArray() public static method

public static ToNativeArray ( Object value, RuntimeTypeHandle handle ) : Object
value Object
handle System.RuntimeTypeHandle
return Object
Exemplo n.º 1
0
 public static object apply(object thisObj, object thisArg, object argArray)
 {
     object [] args = (object [])Convert.ToNativeArray(argArray, typeof(object).TypeHandle);
     return(call(thisObj, thisArg, args));
 }