Exemple #1
0
        bool IEquatable <TestDataHolder <T> > .Equals(TestDataHolder <T> other)
        {
            if (other == null)
            {
                return(false);
            }

            return(Object.Equals(V1, other.V1));
        }
Exemple #2
0
        public override bool Equals(object obj)
        {
            TestDataHolder <T> that = obj as TestDataHolder <T>;

            return(((IEquatable <TestDataHolder <T> >) this).Equals(that));
        }