예제 #1
0
 ///<exclude/>
 public bool Equals(UInt8 other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(other.data.Equals(data));
 }
예제 #2
0
파일: UInt8.cs 프로젝트: garaemon/RosSharp
 ///<exclude/>
 public bool Equals(UInt8 other)
 {
     if (ReferenceEquals(null, other)) return false;
     if (ReferenceEquals(this, other)) return true;
     return other.data.Equals(data);
 }