FastQuant.FieldList.this C# (CSharp) Méthode

this() public méthode

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