Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created June 18, 2013 03:09
Show Gist options
  • Save Fhernd/5802412 to your computer and use it in GitHub Desktop.
Save Fhernd/5802412 to your computer and use it in GitHub Desktop.
Ejemplo del uso de la palabra reservada dynamic en C#.
class DynamicKeyword
{
public static void main()
{
dynamic d = 1;
d = d + 3;
System.Console.WriteLine(d);
d = "Cadena de caracteres";
System.Console.WriteLine(d);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment