The .NET framework is a software framework (designed mainly for the Microsoft Windows operating system). It includes an implementation of the Base Class Library, Common Language Runtime, and Dynamic Language Runtime. It supports many programming languages, including C#, VB.NET, F# and C++.

learn more… | top users | synonyms (3)

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 ...
677
votes
117answers
38k views

Most useful free .NET libraries? [closed]

I have used a lot of free .NET libraries, some from Microsoft itself! Which ones have you found the most useful? Mathematics Math.NET Numerics - special functions, linear algebra, probability ...
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 ...
417
votes
47answers
49k views

Visual Studio optimizations [closed]

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 ...
358
votes
27answers
11k views

Using a piano keyboard as a computer keyboard

I have RSI problems and have tried 30 different computer keyboards which all caused me pain. Playing piano does not cause me pain. I would like to know if there is a way to capture MIDI from a MIDI ...
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...?
290
votes
53answers
20k views

Hidden Features of ASP.NET

This question exists because it has historical significance, but it is not considered a good, on-topic question for this site, so please do not use it as evidence that you can ask similar ...
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; ...
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 ...
247
votes
26answers
30k views

Questions every good .NET developer should be able to answer? [closed]

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 ...
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?
243
votes
10answers
78k views

Entity Framework vs LINQ to SQL

Now that .NET v3.5 SP1 has been released (along with VS2008 SP1), we now have access to the .NET entity framework. My question is this. When trying to decide between using the Entity Framework and ...
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 ...
235
votes
14answers
25k views

ASP.NET: Web Site or Web Application?

When I start a new ASP.NET project in Visual Studio 2008, I can either create a new ASP.NET Web Site or an ASP.NET Web Application. What's the difference between these two project types? Why would I ...
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
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 ...
227
votes
88answers
17k views

Hidden .NET Base Class Library Classes? [closed]

What are your favorite lesser-known .NET Base Class Library classes and methods?
223
votes
16answers
12k 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, ... ...
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 ...
216
votes
14answers
100k views

Will Google Android ever support .NET?

Now that the G1 with Google's Android OS is now available (soon), will the android platform ever support .Net?
214
votes
10answers
31k views

Open Source Alternatives to Reflector?

Just to ask if anyone knows of an open source alternative to RedGate's Reflector? I'm interested in checking out how a tool similar to Reflector actually works. Note, if you know of a free but not ...
209
votes
122answers
15k 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.
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 ...
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? ...
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 ...
183
votes
8answers
12k views

What is the best algorithm for an overridden System.Object.GetHashCode?

In .NET System.Object.GetHashCode method is use in a lot of places throughout the .NET base class libraries. Especially when finding items in a collection fast or to determine equality. Is there a ...
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 ...
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?
157
votes
15answers
12k views

Getting started with F#

What's a good way to get into F# programming? What's a good "Hello world" example and what simple examples can show me why I want to use it over C#. Also what tools do I need? I have WindowsXP, ...
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?
152
votes
10answers
18k views

Logging best practices

I'd like to get stories on how people are handling tracing and logging in real applications. Here are some questions that might help to explain your answer. Frameworks What frameworks do you use? ...
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 ...
146
votes
55answers
5k views

How do you teach a senior developer how to be more efficient? [closed]

We have a couple senior (i.e. older) developers on our team that have no interest in improving. They write solid code, but they don't want to add unit tests or improve their efficiency. They are ...
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
20answers
36k views

How do you unit test private methods?

I'm building a class library that will have some public & private methods. I want to be able to unit test the private methods (mostly while developing, but also it could be useful for future ...
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?
133
votes
21answers
13k views

In C#, should I use string.Empty or String.Empty or “”?

In C#, I want to initialize a string value with an empty string? How should I do this? What is the right way, and why? string willi = string.Empty; or string willi = String.Empty; or string ...
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
12answers
4k views

How serious is this new ASP.NET security vulnerability and how can I workaround it?

I've just read on the net about a newly discovered security vulnerability in ASP.NET. You can read the details here. The problem lies in the way that ASP.NET implements the AES encryption ...
129
votes
22answers
27k views

Best Free Controls for .NET [closed]

What Free Controls are there for .NET (both Winforms and Webforms)?
128
votes
4answers
21k views

What are differences between AssemblyVersion, AssemblyFileVersion and AssemblyInformationalVersion?

There are three assembly version attributes. What are differences? Is it ok if I use AssemblyVersion and ignore the rest? MSDN says: AssemblyVersion: Specifies the version of the assembly ...
126
votes
12answers
17k 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: ...

1 2 3 4 5 2100