コード例 #1
0
ファイル: AresChannel.cs プロジェクト: silverx69/Zorbo
 public bool Equals(AresChannel other)
 {
     if (other is null)
     {
         return(false);
     }
     return(ExternalIp.Equals(other.ExternalIp) && Name == other.Name);
 }
コード例 #2
0
 public bool Equals(AresChannel other)
 {
     if (other == null)
     {
         return(false);
     }
     return(ExternalIp.Equals(other.ExternalIp) && Port == other.Port);
 }