Example #1
0
 public static object get_RefType(TestStruct testStruct)
 {
     return(testStruct.RefType);
 }
Example #2
0
 public static string get_RefTypeAsString(TestStruct testStruct)
 {
     return(testStruct.RefType.ToString());
 }
Example #3
0
 public static string get_Name(TestStruct testStruct)
 {
     return(testStruct.Name);
 }
Example #4
0
 public static int?get_NullableInt(TestStruct testStruct)
 {
     return(testStruct.NullableInt);
 }
Example #5
0
 public static int get_Count(TestStruct testStruct)
 {
     return(testStruct.Count);
 }
Example #6
0
 public static string get_CountAsString(TestStruct testStruct)
 {
     return(testStruct.Count.ToString());
 }