I'm not sure if you're asking something R#-specifc.
I wrote I want "quick" help inside VS without executing some command line code. For example when pressing CtrlShiftF1 (a R# feature) it couldn't be hard to show the real enum value there, too.
If I'm right, there's a similar feature request in our tracker: http://youtrack.jetbrains.net/issue/RSRP-97300 which hasn't been implemented yet. You're welcome to vote for it. Thank you!
Andrey Serebryansky Senior Support Engineer JetBrains, Inc http://www.jetbrains.com "Develop with pleasure!"
David,
>> I'm not sure if you're asking something R#-specifc. >>
I wrote I want "quick" help inside VS without executing some command line code. For example when pressing CtrlShiftF1 (a R# feature) it couldn't be hard to show the real enum value there, too.
I'm not sure if you're asking something R#-specifc. If you want the (say, int) values of an enum type, use:
var myVals = Enum.GetValues(typeof(MyEnum)).Cast<int>();
If you want the value of a particular name, use:
var myVal = (int)MyEnum.MyName;
David,
I wrote I want "quick" help inside VS without executing some command line
code.
For example when pressing CtrlShiftF1 (a R# feature) it couldn't be hard
to show the real enum value there, too.
--
/\/\arkus.
Hello Markus,
If I'm right, there's a similar feature request in our tracker: http://youtrack.jetbrains.net/issue/RSRP-97300
which hasn't been implemented yet. You're welcome to vote for it. Thank you!
Andrey Serebryansky
Senior Support Engineer
JetBrains, Inc
http://www.jetbrains.com
"Develop with pleasure!"
>> I'm not sure if you're asking something R#-specifc.
>>