ServiceStack.Redis.Tests.Support.CustomType.Equals C# (CSharp) Method

Equals() public method

public Equals ( CustomType other ) : bool
other CustomType
return bool
        public bool Equals(CustomType other)
        {
            if (ReferenceEquals(null, other)) return false;
            if (ReferenceEquals(this, other)) return true;
            return other.CustomId == CustomId;
        }

Same methods

CustomType::Equals ( object obj ) : bool