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

this() 공개 메소드

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

Same methods

Bar::this ( int index ) : object