Beispiel #1
0
 internal NPropertyEntry(NProperty key, object value, NPropertyEntry next)
 {
     Key    = key;
     _value = value;
     Next   = next;
 }
Beispiel #2
0
 internal NPropertyEntry(NPropertyEntry source)
 {
     Key    = source.Key;
     _value = source._value;
 }