For example, I have the following code:
namespace VS2013_EnumTypes
{
class Program
{
enum SomeEnum
{
One,
Two
}
static void SomeMethod(SomeEnum someEnum)
{
//some code
}
static void Main(string[] args)
{
SomeMethod()
}
}
}
In Visual Studio 2010 and 2012 I can type name of the method SomeMethod
and when I type parenthesis '(' then Visual Studio 2010 and 2012 offers me to select the type SomeEnum. But Visual Studio 2013 doesn't do this. It only add for me closing parenthesis and doesn't offer me select enum type, and I am forced to type name of enum type manually.
How to force VS 2013 to show me enum type, which used as parameter of method?