227.

Is it possible to overload static method of a class?

class Program
{
      static void Main()
      {
            MethodA();
            MethodA("");
      }

      static void MethodA()
      {
      }

      static void MethodA(string a)
      {
      }
}