910
votes
253answers
79k 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 …
188
votes
25answers
6k views
What is the best Battleship AI?
Battleship!
Back in 2003, (when I was 17,) I competed in a Battleship AI coding competition. Even though I lost that tournament, I had a lot of fun and learned a lot from it.
Now, I would like to …
177
votes
77answers
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.
…
149
votes
55answers
6k views
Is 4-5 years the “Midlife Crisis” for a programming career?
I’ve been programming C# professionally for a bit over 4 years now. For the past 4 years I’ve worked for a few small/medium companies ranging from “web/ads agencies”, small industry specific software …
124
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.
…
108
votes
22answers
12k 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, …
93
votes
27answers
6k views
Most Useful Attributes in C#
I know that attributes are 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 …
79
votes
17answers
17k views
NUnit vs Visual Studio 2008’s Test Projects for Unit Testing?
I am going to be starting up a new project at work and want to get into unit testing. We will be using VS 2008, C#, and the ASP.NET MVC stuff. I am looking at using either NUnit or the built in test …
79
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 …
78
votes
52answers
8k views
Is it just me or are interfaces overused?
Ok, I may resort to a tad ranting here, so let me apologize in advance, but I'm really curious if others find this pattern annoying too (and I wonder if it is a justifiable pattern)…
So, after just …
77
votes
32answers
6k views
How do I calculate relative time?
Given a specific DateTime value, how do I display relative time, like
2 hours ago
3 days ago
a month ago
etc, etc...?
75
votes
20answers
3k views
Abuse of C# lambda expressions or Syntax brilliance?
I am looking at the MvcContrib Grid component and I'm fascinated, yet at the same time repulsed, by a syntactic trick used in the Grid syntax:
.Attributes(style => "width:100%")
The syntax …
74
votes
33answers
7k views
What’s the hardest or most misunderstood aspect of LINQ?
Background: Over the next month, I'll be giving three talks about or at least including LINQ in the context of C#. I'd like to know which topics are worth giving a fair amount of attention to, based …
74
votes
29answers
6k views
Open source C# projects that have high code quality?
Question:
What are some open source C# projects I can download that implement many best-practices and have a relatively high code quality?
Please accompany your answer with some of the reasons you …
72
votes
92answers
9k views
Most wanted feature for C# 4.0 ?
Some blogs on the Internet give us several clues of what C# 4.0 would be made of. I would like to know what do you really want to see in C# 4.0.
Here are some related articles:
C# 4 tag on Jon …
