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