Skip to content

Instantly share code, notes, and snippets.

@jrusbatch
Last active November 26, 2017 07:07
Show Gist options
  • Save jrusbatch/c1b77884be5e49089088ecc9176e9bf3 to your computer and use it in GitHub Desktop.
Save jrusbatch/c1b77884be5e49089088ecc9176e9bf3 to your computer and use it in GitHub Desktop.
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