888
votes
251answers
76k views
Hidden Features of C#?
This came to my mind after I learned the following from this question:
where T : struct
We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.
Some …
193
votes
40answers
13k views
Visual Studio Optimizations
Visual studio is a pretty awesome IDE, but sometimes you just wish it would go faster. I was wondering if people have any tips or tricks to help speed up visual studio in day to day use.
Things that …
191
votes
66answers
8k views
Most useful free .NET libraries?
I have used a lot of free .NET libraries, some from Microsoft itself!
Which ones have you found the most useful?
Dependency Injection/Inversion of Control
Unity Framework - Microsoft
StructureMap - …
172
votes
75answers
14k views
Common programming mistakes for .NET developers to avoid?
What are some common mistakes made by .NET developers, and how can we avoid them?
For example, trying to open a file without checking whether or not it exists, or catching an error unnecessarily.
…
124
votes
17answers
6k views
Is Mono ready for prime time?
Has anyone used Mono, the open source .NET implementation on a large or medium sized project? I'm wondering if it's ready for real world, production environments. Is it stable, fast, compatible, ... …
122
votes
82answers
9k views
What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)
Let's make a list of answers where you post your excellent and favorite extension methods.
The requirement is that the full code must be posted and a example and an explanation on how to use it.
…
120
votes
81answers
8k views
Hidden .NET Base Class Library Classes?
What are your favorite lesser-known .NET Base Class Library classes and methods?
113
votes
22answers
7k views
Questions every good .NET developer should be able to answer?
My company is about to hire .NET developers. We work on a variety of .NET platforms: ASP.NET, Compact Framework, Windowsforms, Web Services. I'd like to compile a list/catalog of good questions, a …
109
votes
41answers
7k views
Hidden Features of ASP.NET
There are always features that would be useful in fringe scenarios, but for that very reason most people don't know them. I am asking for features that are not typically taught by the text books.
…
104
votes
21answers
11k views
What’s the strangest corner case you’ve seen in C# or .NET?
I collect a few corner cases and brain teasers and would always like to hear more. The page only really covers C# language bits and bobs, but I also find core .NET things interesting too. For example, …
92
votes
23answers
7k views
Is the “loband” version of MSDN preferable?
I don't know about you, but for me MSDN online walks the narrow line between "unusable" and "painful". Every click leads to a page of 1 line of human content and 500 lines of auto-gen garbage, a …
92
votes
100answers
9k views
Practical non-image based CAPTCHA approaches?
It looks like we'll be adding CAPTCHA support to Stack Overflow. This is necessary to prevent bots, spammers, and other malicious scripted activity. We only want human beings to post or edit things …
88
votes
105answers
5k views
Favorite Visual Studio keyboard shortcuts
What is your favorite Visual Studio keyboard shortcut? I'm always up for leaving my hands on the keyboard and away from the mouse!
One per answer please.
87
votes
27answers
6k views
Most Useful Attributes in C#
I know that attributes are an extremely useful. There are some predefined ones such as [Browsable(false)] which allows you to hide properties in the properties tab. Here is a good question explaining …
78
votes
13answers
4k views
Is DateTime.Now the best way to measure a function’s performance?
I need to find a bottleneck and need to accurately as possible measure time.
Is the following Code Snippet the best way to measure the performance?
DateTime startTime = DateTime.Now;
// Some …
