Esempio n. 1
0
 public bool Equals(InitializationAwareValue <T> other)
 {
     return(other != null && Initialized && other.Initialized && StandardLibraryMethods.AreEqual(value, other.value));
 }
Esempio n. 2
0
 public bool Equals(DataValue <T> other)
 {
     return(other != null && StandardLibraryMethods.AreEqual(val, other.val));
 }