Rhino.NativeScript.RealThis C# (CSharp) Method

RealThis() private static method

private static RealThis ( Scriptable thisObj, IdFunctionObject f ) : NativeScript
thisObj Scriptable
f IdFunctionObject
return NativeScript
		private static Rhino.NativeScript RealThis(Scriptable thisObj, IdFunctionObject f)
		{
			if (!(thisObj is Rhino.NativeScript))
			{
				throw IncompatibleCallError(f);
			}
			return (Rhino.NativeScript)thisObj;
		}