コード例 #1
0
ファイル: GUID.cs プロジェクト: jobjingjo/csangband
 public bool Equals(GUID other)
 {
     return this.ID == other.ID;
 }
コード例 #2
0
 public static bool Equal(GUID a, GUID b)
 {
     return(a.ID == b.ID);
 }
コード例 #3
0
ファイル: GUID.cs プロジェクト: jobjingjo/csangband
 public static bool Equal(GUID a, GUID b)
 {
     return a.ID == b.ID;
 }
コード例 #4
0
 public bool Equals(GUID other)
 {
     return(this.ID == other.ID);
 }