Exemplo n.º 1
0
 public string VoidTestComplex(string s, int i, float f, double d, DeTestEnum e, string s2, DeTestEnum e2, DeTestEnumLong e3)
 {
     return(String.Empty);
 }
Exemplo n.º 2
0
 public int VoidTestEnum(DeTestEnum e)
 {
     return(0);
 }
Exemplo n.º 3
0
 public string ActualTestComplex(string s, int i, float f, double d, DeTestEnum e, string s2, DeTestEnum e2, DeTestEnumLong e3)
 {
     return(s + " " + i.ToString() + " " + f.ToString() + " " + d.ToString() + " " + s2 + " " + e2.ToString() + " " + e3.ToString());
 }
Exemplo n.º 4
0
 public int ActualTestEnum(DeTestEnum e)
 {
     return((int)e + 1000);
 }
Exemplo n.º 5
0
 public string VoidTestComplex(string s, int i, float f, double d, DeTestEnum e, string s2, DeTestEnum e2, DeTestEnumLong e3) {
     return String.Empty;
 }
Exemplo n.º 6
0
 public string ActualTestComplex(string s, int i, float f, double d, DeTestEnum e, string s2, DeTestEnum e2, DeTestEnumLong e3) {
     return s + " " + i.ToString() + " " + f.ToString() + " " + d.ToString() + " " + s2 + " " + e2.ToString() + " " + e3.ToString();
 }
Exemplo n.º 7
0
 public int VoidTestEnum(DeTestEnum e) {
     return 0;
 }
Exemplo n.º 8
0
 public int ActualTestEnum(DeTestEnum e) {
     return (int)e + 1000;
 }