コード例 #1
0
ファイル: Int8.cs プロジェクト: palhimanshu1991/RosSharp
 ///<exclude/>
 public bool Equals(Int8 other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(other.data.Equals(data));
 }
コード例 #2
0
ファイル: Int8.cs プロジェクト: garaemon/RosSharp
 ///<exclude/>
 public bool Equals(Int8 other)
 {
     if (ReferenceEquals(null, other)) return false;
     if (ReferenceEquals(this, other)) return true;
     return other.data.Equals(data);
 }