AjTalk.Hosting.RemoteObject.this C# (CSharp) Метод

this() публичный Метод

public this ( int n ) : object
n int
Результат object
        public object this[int n]
        {
            get
            {
                return this.obj[n];
            }

            set
            {
                this.obj[n] = value;
            }
        }