Tagged Questions

6
votes
6answers
393 views

Would you use regions within long switch/enum declarations?

I've recently found myself needing (yes, needing) to define absurdly long switch statements and enum declarations in C# code, but I'm wondering what people feel is the best way to split them into ...
6
votes
7answers
718 views

Hiding the regions in Visual Studio

I know VS code folding issues are an old chestnut, but I haven't been able to find this in all the other discussions I have browsed through: We have a team of C# guys, some love regions and others ...
2
votes
5answers
1k views

PRISM + MEF — Can't get regions to work properly

a bit new to Prismv4 and MEF. I went through the QuickStarts and tried to combine two of them together, but I can't seem to get it working. First, I got a Bootstrapper to load the Shell Window. ...
2
votes
11answers
579 views

Any .NET '#region directive' convention ideas?

I really appreciate the possibility to define regions in your code, as it improves the readability insanely. Anyways, I'd like to have everyone using the same convention in all classes (with the ...
1
vote
1answer
57 views

C# region settings confused

Its all about double, float numbers and seperator. So my problem is: I always get double value with dot seperator. If I convert it to string I get comma. If I change it back to double it gets dot ...
1
vote
1answer
300 views

Is it possible to modify the Navigation Bar in Visual Studio, or to otherwise add a similar graphical element to the code editor?

I like the grouping and browsability that regions provide in C# code but don't like the manual process of maintaining them (even auto-formatting tools are not perfect as they take awhile for large ...