FastQuant.FieldList.this C# (CSharp) 메소드

this() 공개 메소드

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