Example #1
0
 public DataPropertyShell(TKey key, DataProperty <TValue> value)
     : base(key, value)
 {
 }
Example #2
0
 /// <summary>
 /// 要素の取得の試行
 /// </summary>
 public new bool TryGetItem(TKey key, out DataProperty <TValue> item) => base.TryGetItem(key, out item);
Example #3
0
 bool IReadOnlyDictionary <TKey, DataProperty <TValue> > .TryGetValue(TKey key, out DataProperty <TValue> value) => TryGetItem(key, out value);
Example #4
0
 public DebugView(DataProperty <T> target)
 {
     this.target = target;
 }