Binboo.Plugins.Tests.Foundation.Mocks.DummyStorage.this C# (CSharp) Method

this() public method

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