Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- static void Zig(string fun)
- {
- }
- static void Zig(double zag)
- {
- }
- internal static void Main([NotNull] string[] arguments)
- {
- dynamic foo = 1.0;
- Zig(foo);
- dynamic fun = "string";
- Zig(fun);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement