ConstructorIO.ConstructorIORequest.this C# (CSharp) 메소드

this() 공개 메소드

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