Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. // OrtizOL - xCSw - http://ortizol.blogspot.com
  2.  
  3. using System;
  4.  
  5. public class ResolucionEstatica
  6. {
  7.     public static void Main()
  8.     {
  9.         dynamic x = 7;
  10.        
  11.         MostrarEnConsola(x, x);        // Error de compilación: No existe está firma.
  12.         MostrarEnDialogo(x);        // Error de compilación: No existe este método.    
  13.     }
  14.    
  15.     public static void MostrarEnConsola(int x)
  16.     {
  17.         Console.WriteLine("xCSw");
  18.     }
  19.    
  20.     public static void MostrarEnConsola(string x)
  21.     {
  22.         Console.WriteLine("xCSw");
  23.     }
  24. }