1408
votes
296answers
208k 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
32k 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, ...
307
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 ...
294
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...?
290
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 ...
283
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;
...
259
votes
14answers
51k 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 ...
246
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?
240
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
190k 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 ...
227
votes
21answers
59k 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 ...
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 ...
202
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?
...
202
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
...
176
votes
10answers
34k 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
...
174
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 ...
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 + ...
168
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
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?
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 ...
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?
150
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 ...
141
votes
34answers
40k 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 ...
139
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 ...
135
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?
130
votes
11answers
4k views
Can anyone explain this strange behaviour?
Here is the example with comments:
class Program
{
// first version of structure
public struct D1
{
public double d;
public int f;
}
// during some changes in ...
129
votes
22answers
27k views
Best Free Controls for .NET [closed]
What Free Controls are there for .NET (both Winforms and Webforms)?
126
votes
12answers
18k views
Path.Combine for Urls?
Path.Combine is handy, but is there a similar function in the .NET framework for Urls?
I'm looking for syntax like this:
Url.Combine("Http://MyUrl.com/", "/Images/Image.jpg")
which would return:
...
125
votes
17answers
96k views
.NET String to byte Array C#
How do I convert a string to a byte array in .NET (C#)?
Update: Also please explain why encoding should be taken into consideration. Can't I simply get what bytes the string has been stored in? Why ...
125
votes
15answers
22k views
Which .NET Dependency Injection frameworks are worth looking into?
Which C#/.NET Dependency Injection frameworks are worth looking into?
And what can you say about their complexity and speed.
125
votes
29answers
91k views
Reading Excel files from C#
Is there a free or open source library to read Excel files (.xls) directly from a C# program?
It does not need to be too fancy, just to select a worksheet and read the data as strings. So far, I've ...
122
votes
2answers
2k views
Why use try {} finally {} with an empty try block?
I noticed in System.Threading.TimerBase.Dipose() the method has a try{} finally{} block but the try{} is empty.
Is there any value in using try{} finally{} with an empty try?
...
115
votes
6answers
4k views
What is the purpose of a stack? Why do we need it? (MSIL)
So I am learning MSIL right now to learn to debug my C# .net applications.
I've always wondered: what is the purpose of the stack?
Just to put my question in context:
Why is there a transfer from ...
115
votes
0answers
55k views
Looking for C# HTML parser [closed]
Possible Duplicate:
What is the best way to parse html in C#?
I would like to extract the structure of the HTML document - so the tags are more important than the content. Ideally, it ...
111
votes
9answers
33k views
Is there a .NET/C# wrapper for SQLite?
I'd sort of like to use SQLite from within C#.Net, but I can't seem to find an appropriate library. Is there one? An official one? Are there other ways to use SQLite than with a wrapper?
109
votes
5answers
29k views
What 'additional configuration' is necessary to reference a .NET 2.0 mixed mode assembly in a .NET 4.0 project?
I have a project in which I'd like to use some of the .NET 4.0 features but a core requirement is that I can use the System.Data.SQLite framework which is compiled against 2.X. I see mention of this ...
106
votes
10answers
20k views
C#: Interfaces - Implicit and Explicit implementation
What are the differences in implementing interfaces implicitly and explicitly in C#?
When should you use implicit and when should you use explicit?
Are there any pros and/or cons to one or the ...
100
votes
22answers
3k views
Overengineering - How to avoid it
Sometimes I find myself designing my classes for a certain project. I start with some entities, some interfaces, but after some time I think:
Hey what about creating a handler for the classes using a ...
100
votes
20answers
45k views
MetadataException: Unable to load the specified metadata resource
All of a sudden I keep getting a MetadataException on instantiating my generated ObjectContext class. The connectionstring in App.Config looks correct - hasn't changed since last it worked - and I've ...
100
votes
7answers
29k views
Structure Vs Class in C#
When you create an instance of a class with the new operator, memory gets allocated on the heap. When you create an instance of a struct with the new operator where does the memory get allocated, on ...
95
votes
8answers
51k views
C# Set collection?
Does anyone know if there is a good equivelent to Java's Set collection in C#.
It's one of the few things I miss from having moved to C#.
I am aware that you can have a "pretend" set using a ...
92
votes
21answers
3k views
Does .NET equal C#? [closed]
Does being a .NET developer mean knowing C# or mean knowing something else?
What books should I read if I want to be a .NET developer?
92
votes
8answers
48k views
Sending email in .NET through Gmail
Instead of relying on my host to send email, I was thinking of sending the messages though my Gmail account. The emails are personalized emails to the bands I play on my show. Is it possible to do?
90
votes
8answers
4k views
How is null + true a string?
Since true is not a string type, how is null + true a string ?
string s = true; //Cannot implicitly convert type 'bool' to 'string'
bool b = null + true; //Cannot implicitly convert type 'string' ...
89
votes
19answers
16k views
What is the correct way to create a single instance application?
Using C# and WPF under .net (rather than WindowsForms or console), what is the correct way to create an application that can only be run as a single instance? I know it has something to do with some ...
88
votes
20answers
3k views
What can you do in MSIL that you cannot do in C# or VB.NET?
All code written in .NET languages compiles to MSIL, but are there specific tasks / operations that you can do only using MSIL directly?
Let us also have things done easier in MSIL than C#, VB.NET, ...