using System; namespace Articulos.Ch03 { public class CasoSimpleSobrecarga { static void Metodo (int x) { Console.WriteLine ("Metodo(int x)"); } static void Metodo (string y) { Console.WriteLine ("Metodo(string y)"); } public static void Main () { Metodo ("OrtizOL"); } } }