Ejemplo n.º 1
0
 public bool CompareTo(InstanceTests target)
 {
     if (this.IntValue == target.IntValue && this.FloatValue == target.FloatValue)
     {
         return(true);
     }
     return(false);
 }
Ejemplo n.º 2
0
		public bool CompareTo (InstanceTests target) {
			if (this.IntValue == target.IntValue && this.FloatValue == target.FloatValue)
				return true;
			return false;
		}