예제 #1
0
파일: UQID.cs 프로젝트: Texl/txl--diamond
 private static void VerifyIsInitialized <U>(UQID <U> other)
 {
     if (!other.mInitialized)
     {
         other.ComplainUninitialized("Other");
     }
 }
예제 #2
0
파일: UQID.cs 프로젝트: Texl/txl--diamond
        public bool Equals(UQID <TQualification> obj)
        {
#if DEBUG
            VerifyThisIsInitialized();
            VerifyIsInitialized(obj);
#endif

            return(obj.IDValue.Equals(IDValue));
        }
예제 #3
0
파일: UQID.cs 프로젝트: Texl/txl--diamond
 public int CompareTo(UQID <TQualification> other) => IDValue.CompareTo(other.IDValue);