public static int CompareValue2(TestClass obj1, TestClass obj2) { return(obj1.Value2.CompareTo(obj2.Value2)); }
public TestClass(TestClass obj) : this(obj.Value1, obj.Value2) { }