예제 #1
0
파일: Exchange.cs 프로젝트: wfvvfw/CoAP.NET
            /// <inheritdoc/>
            public override Boolean Equals(Object obj)
            {
                KeyID other = obj as KeyID;

                if (other == null)
                {
                    return(false);
                }
                return(_id == other._id && _endpoint.Equals(other._endpoint));
            }