Exemplo n.º 1
0
            public bool Equals(TestObject other)
            {
                if (other == null)
                {
                    return(false);
                }

                return(Ascii.Equals(other.Ascii) &&
                       Integer.Equals(other.Integer) &&
                       Boolean.Equals(other.Boolean) &&
                       Unicode.Equals(other.Unicode) &&
                       Single.Equals(other.Single));
            }