Rhino.NativeString.RealThis C# (CSharp) Method

RealThis() private static method

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