protected bool Equals(KitchenSinkPortable other) { return(Bool == other.Bool && BoolArray.SequenceEqual(other.BoolArray) && ByteArray.SequenceEqual(other.ByteArray) && Byte == other.Byte && CharArray.SequenceEqual(other.CharArray) && Char == other.Char && ShortArray.SequenceEqual(other.ShortArray) && Short == other.Short && IntArray.SequenceEqual(other.IntArray) && Int == other.Int && LongArray.SequenceEqual(other.LongArray) && Long == other.Long && FloatArray.SequenceEqual(other.FloatArray) && Float.Equals(other.Float) && DoubleArray.SequenceEqual(other.DoubleArray) && Double.Equals(other.Double) && string.Equals(String, other.String) && StringArray.SequenceEqual(other.StringArray) ); }
protected bool Equals(KitchenSinkDataSerializable other) { return(BoolArray.SequenceEqual(other.BoolArray) && Bool == other.Bool && ByteArray.SequenceEqual(other.ByteArray) && Byte == other.Byte && CharArray.SequenceEqual(other.CharArray) && Char == other.Char && ShortArray.SequenceEqual(other.ShortArray) && Short == other.Short && IntArray.SequenceEqual(other.IntArray) && Int == other.Int && LongArray.SequenceEqual(other.LongArray) && Long == other.Long && FloatArray.SequenceEqual(other.FloatArray) && Float.Equals(other.Float) && DoubleArray.SequenceEqual(other.DoubleArray) && Double.Equals(other.Double) && string.Equals(Chars, other.Chars) && string.Equals(String, other.String) && StringArray.SequenceEqual(other.StringArray) && Equals(Serializable, other.Serializable) && Equals(Portable, other.Portable) && Equals(Data, other.Data) && DateTime.Equals(other.DateTime)); }
protected bool Equals(AllTypes other) { return(Id == other.Id && NullableId == other.NullableId && Byte == other.Byte && Short == other.Short && Int == other.Int && Long == other.Long && UShort == other.UShort && UInt == other.UInt && ULong == other.ULong && Float.Equals(other.Float) && Double.Equals(other.Double) && Decimal == other.Decimal && string.Equals(String, other.String) && DateTime.Equals(other.DateTime) && TimeSpan.Equals(other.TimeSpan) && DateTimeOffset.Equals(other.DateTimeOffset) && Guid.Equals(other.Guid) && Bool == other.Bool && Char == other.Char && NullableDateTime.Equals(other.NullableDateTime) && NullableTimeSpan.Equals(other.NullableTimeSpan) && ByteArray.SequenceEqual(other.ByteArray) && CharArray.SequenceEqual(other.CharArray) && IntArray.SequenceEqual(other.IntArray) && LongArray.SequenceEqual(other.LongArray) && StringArray.SequenceEqual(other.StringArray) && StringList.SequenceEqual(other.StringList) && StringMap.SequenceEqual(other.StringMap) && IntStringMap.SequenceEqual(other.IntStringMap) && SubType.Equals(other.SubType) && SubTypes.SequenceEqual(other.SubTypes) && CustomText == other.CustomText && MaxText == other.MaxText && CustomDecimal.Equals(other.CustomDecimal)); }