Esempio n. 1
0
 public virtual bool DataContentEquals([NotNull] EquatableTestEdge other)
 {
     return(GetType() == other.GetType() &&
            string.Equals(ID, other.ID) &&
            string.Equals(String, other.String) &&
            Int == other.Int &&
            Long == other.Long &&
            Double.Equals(other.Double) &&
            Bool == other.Bool &&
            Float.Equals(other.Float));
 }