Last active
November 26, 2017 07:07
-
-
Save jrusbatch/c1b77884be5e49089088ecc9176e9bf3 to your computer and use it in GitHub Desktop.
This file contains 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
namespace ArgListOutVar | |
{ | |
public class Program | |
{ | |
public static void Main(string[] args) | |
{ | |
// __arglist(out var x); // Loading a project that contains a file with this line uncommented crashes VS | |
__arglist(out int x); // If the type is explicit, VS doesn't crash | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment