Ejemplo n.º 1
0
 /// <summary>
 /// シリアライザ実行時の「固有の状態」を再現する。
 /// </summary>
 /// <param name="lines">シリアライザから取得した状態データ</param>
 protected virtual void Deserialize_02(string[] lines)
 {
     if (ArrayTools.Comp(lines, SERIALIZED_DUMMY, StringTools.Comp) != 0)
     {
         throw new DDError();
     }
 }
Ejemplo n.º 2
0
        // ---- 項目ここまで

        public bool IsSame(GrphCond other)
        {
            return
                (this.CurrPair == other.CurrPair &&
                 this.DateTimeSt == other.DateTimeSt &&
                 this.DateTimeEd == other.DateTimeEd &&
                 ArrayTools.Comp(this.MaDays, other.MaDays, (a, b) => a.Index - b.Index) == 0);
        }