コード例 #1
0
ファイル: NPropertyBag.cs プロジェクト: xstos/nreact
 internal NPropertyEntry(NProperty key, object value, NPropertyEntry next)
 {
     Key    = key;
     _value = value;
     Next   = next;
 }
コード例 #2
0
ファイル: NPropertyBag.cs プロジェクト: xstos/nreact
 internal NPropertyEntry(NPropertyEntry source)
 {
     Key    = source.Key;
     _value = source._value;
 }