Rhino.NativeWith.Get C# (CSharp) Method

Get() public method

public Get ( int index, Scriptable start ) : object
index int
start Scriptable
return object
		public virtual object Get(int index, Scriptable start)
		{
			if (start == this)
			{
				start = prototype;
			}
			return prototype.Get(index, start);
		}

Same methods

NativeWith::Get ( string id, Scriptable start ) : object