public override bool Equals(object obj)
 {
     if (this == obj)
     {
         return(true);
     }
     if (obj == null || GetType() != obj.GetType())
     {
         return(false);
     }
     SortMultipleTestCase.IntHolder intHolder = (SortMultipleTestCase.IntHolder)obj;
     return(_value == intHolder._value);
 }
Пример #2
0
			public Data(int first, int second, int third)
			{
				this._first = first;
				this._second = second;
				this._third = new SortMultipleTestCase.IntHolder(third);
			}
 public Data(int first, int second, int third)
 {
     this._first  = first;
     this._second = second;
     this._third  = new SortMultipleTestCase.IntHolder(third);
 }