Created
June 18, 2013 03:09
-
-
Save Fhernd/5802412 to your computer and use it in GitHub Desktop.
Ejemplo del uso de la palabra reservada dynamic en C#.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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