Rhino.ScriptRuntime.IsArrayObject C# (CSharp) Method

IsArrayObject() public static method

public static IsArrayObject ( object obj ) : bool
obj object
return bool
		public static bool IsArrayObject(object obj)
		{
			return obj is NativeArray || obj is Arguments;
		}
ScriptRuntime