Microsoft.Zing.WithList.this C# (CSharp) Method

this() public method

public this ( int index ) : With
index int
return With
        public With this[int index]
        {
            get
            {
                return this.elements[index];
            }
            set
            {
                this.elements[index] = value;
            }
        }