public static TestType1 dnaTestFunction2Ret1(TestType2 tt)
 {
     return(new TestType1("The Test (2) value is " + tt._value.Value));
 }
 public static TestType1 dnaTestFunction2Ret1(TestType2 tt)
 {
     return new TestType1("The Test (2) value is " + tt._value.Value);
 }
 public static string dnaTestFunction2(TestType2 tt)
 {
     return("The Test (2) value is " + tt._value.Value);
 }
 public static string dnaTestFunction2(TestType2 tt)
 {
     return "The Test (2) value is " + tt._value.Value;
 }