예제 #1
0
파일: ChatUser.cs 프로젝트: WIND4IK/AGENTIK
 public bool Equals(ChatUser other) {
     if (ReferenceEquals(other, null)) {
         return false;
     }
     if (ReferenceEquals(this, other)) {
         return true;
     }
     if (GetType() != other.GetType()) {
         return false;
     }
     return (Bare == other.Bare);
 }
예제 #2
0
파일: ChatUser.cs 프로젝트: WIND4IK/AGENTIK
 public bool Equals(ChatUser other)
 {
     if (ReferenceEquals(other, null)) {
         return false;
     }
     if (ReferenceEquals(this, other)) {
         return true;
     }
     if (GetType() != other.GetType()) {
         return false;
     }
     return (Bare == other.Bare);
 }