FastQuant.FieldList.this C# (CSharp) Method

this() public method

public this ( int id ) : double
id int
return double
        public double this[int id]
        {
            get
            {
                return this.array[id];
            }
            set
            {
                this.array[id] = value;
            }
        }
    }
FieldList