VSTalk.Engine.Core.Disco.Caps.CapsInfo.Equals C# (CSharp) Method

Equals() protected method

protected Equals ( CapsInfo other ) : bool
other CapsInfo
return bool
        protected bool Equals(CapsInfo other)
        {
            return string.Equals(Version, other.Version) && string.Equals(Node, other.Node) && string.Equals(Hash, other.Hash);
        }

Same methods

CapsInfo::Equals ( object obj ) : bool