Microsoft.Scripting.ScopeStorage.this C# (CSharp) Method

this() public method

Provides convenient case-sensitive value access.
public this ( string index ) : Object
index string
return System.Object
        public dynamic this[string index] {
            get {
                return GetValue(index, false);
            }
            set {
                SetValue(index, false, (object)value);
            }
        }