Sha256: 123873d5bf1d243cfd2d14900687c8f8fe92a839e2473b26e97e5b913221406b
Contents?: true
Size: 433 Bytes
Versions: 2
Compression:
Stored size: 433 Bytes
Contents
using System; using System.Collections.Generic; namespace ClrModels { public class IndexerContained{ private Dictionary<string, string> _inner = new Dictionary<string, string>{ { "key1", "value1" }, { "key2", "value2" }, { "key3", "value3" }, { "key4", "value4" } }; public virtual string this[string name]{ get { return _inner[name]; } set { _inner[name] = value; } } } }
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
caricature-0.7.7 | spec/fixtures/IndexerContained.cs |
caricature-0.7.6 | spec/fixtures/IndexerContained.cs |