AjTalk.Language.BaseObject.this C# (CSharp) Метод

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

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

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