Consider the following method declaration: void mymethod(int age, string name) which of the following methods would you choose for it to be not ambiguous?
a) void mymethod(int, string)
b) void mymethod(integer age, string name)
c) void mymethod(int age, char name[])
d) void mymethod(int, string)