Пример #1
0
        public bool Equals(TestObject other)
        {
            if (other == null)
            {
                return(false);
            }

            return(Value.Equals(other.Value) &&
                   Object.Equals(other.Object) &&
                   ValueArray.SequenceEqual(other.ValueArray) &&
                   ObjectArray.SequenceEqual(other.ObjectArray));
        }