Rhino.NativeString.RealThis C# (CSharp) 메소드

RealThis() 개인적인 정적인 메소드

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