Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class DynamicKeyword
- {
- public static void main()
- {
- dynamic d = 1;
- d = d + 3;
- System.Console.WriteLine(d);
- d = "Cadena de caracteres";
- System.Console.WriteLine(d);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement