FastQuant.Bar.this C# (CSharp) Method

this() public method

public this ( string name ) : object
name string
return object
        public object this[string name]
        {
            get
            {
                return this[mapping[name]];
            }
            set
            {
                this[mapping[name]] = value;
            }
        }

Same methods

Bar::this ( int index ) : object