Beispiel #1
0
 public bool Equals(T other)
 {
     return(ValueObject <T> .Equals(myself : (T)this, other : other));
 }
Beispiel #2
0
 public static bool Inequality(ValueObject <T> a, ValueObject <T> b)
 {
     return(!(Equality(a, b)));
 }
Beispiel #3
0
 public override bool Equals(object obj)
 {
     return(ValueObject <T> .Equals(myself : (T)this, obj : obj));
 }