
If we have a method declared as
public static void DoSomething(string what, int howMany = 3)
In the current version of the SyntaxEditor the ParameterInfo control will show
void ClassName.DoSomething(string what, [int howMany])
In Visual Studio the ParameterInfo shows
(string what, int howMany = 3)
It makes it easier to know what the default value is. Ideally it would be a small tweak to end up looking like this
void ClassName.DoSomething(string what, int howMany = 3)
[Modified 5 years ago]