C# is a high level, general-purpose object-oriented programming language created by Microsoft.

learn more… | top users | synonyms (5)

1408
votes
296answers
207k 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 ...
479
votes
116answers
42k views

Common programming mistakes for .NET developers to avoid? [closed]

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.
435
votes
147answers
31k views

What are your favorite extension methods for C#? (codeplex.com/extensionoverflow)

Caution! This ancient question is from the early days of Stack Overflow, and while we recognize its historical significance and have thus chosen to keep it around, please realize that if a ...
324
votes
37answers
52k views

What's the strangest corner case you've seen in C# or .NET? [closed]

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, ...
306
votes
25answers
19k 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 ...
292
votes
34answers
27k 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...?
289
votes
11answers
77k views

C#: How to enumerate an enum?

How can you enumerate a enum in C#? e.g. the following does not compile: public enum Suit { Spades, Hearts, Clubs, Diamonds } public void EnumerateAllSuitsDemoMethod() { foreach (Suit suit in ...
286
votes
34answers
69k views

Simple proof that GUID is not unique

I'd like to prove that a GUID is not unique in a simple test program. I expected the following code to run for hours, but it's not working. How can I make it work? BigInteger begin = new ...
281
votes
3answers
25k views

Is there a reason for C#'s reuse of the variable in a foreach?

When using lambda expressions or anonymous methods in C#, we have to be wary of the access to modified closure pitfall. For example: foreach (var s in strings) { query = query.Where(i ...
275
votes
4answers
8k views

Try-catch speeding up my code?

I wrote some code for testing the impact of try-catch, but seeing some surprising results. static void Main(string[] args) { Thread.CurrentThread.Priority = ThreadPriority.Highest; ...
272
votes
57answers
22k views

Is it just me or are interfaces overused? [closed]

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 ...
267
votes
5answers
18k views

What are the correct version numbers for C#?

What are the correct version numbers for C#? What came out when? Why can't I find any answers about C# 3.5? [This question is primarily to aid those who are searching for an answer using an incorrect ...
261
votes
92answers
30k views

Use of var keyword in C# [closed]

After discussion with colleagues regarding the use of the 'var' keyword in C# 3 I wondered what people's opinions were on the appropriate uses of type inference via var? For example I rather lazily ...
257
votes
14answers
50k views

String vs string in C#

In C# the string keyword (highlighted in Visual Studio as a data type) is just a shortcut to the String class right? In that case, it would be the same to use either while coding from the semantic ...
245
votes
28answers
50k views

What Are Some Good .NET Profilers?

What profilers have you used when working with .net programs, and which would you particularly recommend?
239
votes
31answers
64k views

How do I calculate someone's age in C#?

Given a DateTime representing their birthday, how do I calculate someone's age?
237
votes
35answers
189k views

Create Excel (.XLS and .XLSX) file from C# [closed]

What is the best tool for creating an Excel Spreadsheet with C#? Ideally, I would like open source so I don't have to add any third party dependencies to my code, and I would like to avoid using ...
234
votes
23answers
82k views

MVVM: Tutorial from start to finish? [closed]

I'm a C#/Windows Forms programmer with more than 5 years experience. I've been investigating WPF using the MVVM (Model-View-ViewModel) design pattern. I have searched the Internet for tutorials. I ...
226
votes
21answers
58k views

Best way to parse command line arguments in C#?

When building console applications that take parameters, you can use the arguments passed to Main(string[] args). In the past I've simply indexed/looped that array and done a few regular expressions ...
221
votes
28answers
15k 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 ...
215
votes
62answers
186k views

Good C# Interview Questions for a Senior Dev Position [closed]

I know there have been a great deal of interview questions posted on SO, however I wondered what sort of questions people here ask at C# interviews, interviewing for a senior developer position. In ...
207
votes
16answers
127k views

Cloning objects in C#

I want to do something like... myObject myObj = GetmyObj()//create and fill a new object myObject newObj = myObj.Clone(); ...and then make changes to the new object that are not reflected in the ...
207
votes
9answers
99k views

Cast int to Enum in C#

What's a quick and easy way to cast an int to an enum in c#?
201
votes
3answers
6k views

If strings are immutable in .NET, then why does Substring take O(n) time?

Given that strings are immutable in .NET, I'm wondering why they have been designed such that string.Substring() takes O(substring.Length) time, instead of O(1)? i.e. what were the tradeoffs, if any? ...
201
votes
10answers
42k views

Case insensitive contains(string)

Is there a way to make the following return true? string title = "ASTRINGTOTEST"; title.Contains("string"); There doesn't seem to be an overload that allows me to set the case sensitivity.. ...
200
votes
17answers
34k views

What C# mocking framework to use?

I want to start using mock objects on my next C# project. After a quick Google search I've found there are many: NMock EasyMock.NET TypeMock Isolator Commercial / Paid Rhino Mocks Moq ...
198
votes
4answers
3k views

.NET JIT potential error?

The following code gives different output when running the release inside Visual Studio, and running the release outside Visual Studio. I'm using Visual Studio 2008 and targeting .NET 3.5. I've also ...
188
votes
11answers
65k views

How do you give a C# Auto-Property a default value?

How do you give a C# Auto-Property a default value? I either use the constructor, or revert to the old syntax. Using the Constructor: class Person { public Person() { Name = ...
185
votes
21answers
10k 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 ...
184
votes
9answers
18k views

Virtual member call in a constructor

I'm getting a warning from ReSharper about a call to a virtual member from my objects constructor. Why would this be something not to do?
180
votes
13answers
4k views

Why must we define both == and != in C#?

The C# compiler requires that whenever a custom type defines operator ==, it must also define != (see here). Why? I'm curious to know why the designers thought it necessary and why can't the ...
175
votes
10answers
33k views

Catch multiple Exceptions at once?

It is discouraged to simply catch System.Exception, instead only the "known" Exceptions should be caught. Now, this sometimes leads to unneccessary repetetive code, for example: try ...
172
votes
6answers
14k views

Should Usings be inside or outside the namespace

I have been running StyleCop over some C# code and it keeps reporting that my using statements should be inside the namespace. Is there a technical reason for putting the using statements inside ...
172
votes
19answers
45k 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 ...
170
votes
40answers
18k views

What's the compelling reason to upgrade to Visual Studio 2010 from VS2008?

Are there new features in Visual Studio 2010 that are must-haves? If so, which ones? For me, the big draws for VS2008 as compared to VS2005 were LINQ, .NET Framework multitargeting, WCF (REST + ...
167
votes
7answers
46k views

What is the difference between Decimal, Float and Double in C#?

What is the difference between Decimal, Float and Double in C#? When would someone use each of these?
166
votes
14answers
10k 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 ...
165
votes
21answers
17k views

What is the difference between const and readonly?

What is the difference between const and readonly and do you use one over the other?
163
votes
15answers
28k views

In C# what is the difference between String and string

In C# what is the difference between String and string? (note the case) Also, what are the guidelines for the use of each?
155
votes
13answers
6k views

Why is the C# “as” operator so popular?

In development blogs, online code examples and (recently) even a book, I keep stumbling about code like this: var y = x as T; y.SomeMethod(); or, even worse: (x as T).SomeMethod(); That doesn't ...
154
votes
11answers
83k views

Why Dictionary is preferred over hashtable in C#?

In most of programming languages, we preferred using a dictionary over a hashtable . What are the reasons behind it?
151
votes
22answers
18k views

When to use struct in C#?

Here's a fun one. When should you use struct and not class in C#? I came across these rules here: a struct should represent a single value a struct should have a memory footprint less than 16 ...
149
votes
55answers
12k views

What is the worst gotcha in C# or .NET?

This question is similar to this one, but focused on C# and .NET. I was recently working with a DateTime object, and wrote something like this: DateTime dt = DateTime.Now; dt.AddDays(1); return ...
148
votes
12answers
104k views

How do you sort a C# dictionary by value?

I often have a Dictionary of keys & values and need to sort it by value. For example, I have a hash of words and their frequencies, and want to order them by frequency. There's SortedList which ...
141
votes
34answers
39k views

What is the best logging solution for a C# .NET 3.5 project? [closed]

My team is about to start a new enterprise wide ASP.NET development project, quite possibly the largest undertaken by my department so far and the largest project that I've ever worked on. I'm looking ...
140
votes
14answers
12k views

Expression Versus Statement

I'm asking with regards to c#, but I assume its the same in most other languages. Does anyone have a good definition of expressions and statements and what the differences are. Thanks in advance.
140
votes
46answers
9k views

What are the pros and cons to keeping SQL in Stored Procs versus Code

What are the advantages/disadvantages of keeping SQL in your C# source code or in Stored Procs? I've been discussing this with a friend on an open source project that we're working on (C# ASP.NET ...
139
votes
31answers
14k 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 ...
138
votes
9answers
113k views

LINQ query on a DataTable

I'm trying to perform a LINQ query on a DataTable object and bizarrely I am finding that performing such queries on DataTables is not straightforward. For example: var results = from myRow in ...
134
votes
12answers
21k views

What NoSQL solutions are out there for .NET?

What NoSQL solutions are out there for .NET? Which have the best integration with C#? Which integrate with LINQ? Also which would be easiest to integrate into an application?

1 2 3 4 5 5210