I have a class as follows with two overload method.
Class A { public string x(string a, string b) { return \"hello\" + a + b; } publ
If you call the Method with two Parameters, it uses the Method with two Parameters. If you'd call the one with three, it would use the other.