227.
Is it possible to overload static method of a class?
View Description
class Program
{
static void Main()
{
MethodA();
MethodA("");
}
static void MethodA()
{
}
static void MethodA(string a)
{
}
}