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