AjTalk.Hosting.RemoteObject.this C# (CSharp) Méthode

this() public méthode

public this ( int n ) : object
n int
Résultat object
        public object this[int n]
        {
            get
            {
                return this.obj[n];
            }

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