fork download
  1. using System;
  2.  
  3. namespace Articulos.Ch03
  4. {
  5. public class CasoSimpleSobrecarga
  6. {
  7. static void Metodo (int x)
  8. {
  9. Console.WriteLine ("Metodo(int x)");
  10. }
  11.  
  12. static void Metodo (string y)
  13. {
  14. Console.WriteLine ("Metodo(string y)");
  15. }
  16.  
  17. public static void Main ()
  18. {
  19. Metodo ("OrtizOL");
  20. }
  21. }
  22. }
Success #stdin #stdout 0.02s 33816KB
stdin
Standard input is empty
stdout
Metodo(string y)