Tagged Questions
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 (commonly referred to as CLI) and Dynamic Language Runtime. It supports many programming languages, including C#, ...
806
votes
14answers
166k views
How do I 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 ...
528
votes
37answers
122k views
How do I calculate someone's age
Given a DateTime representing a person's birthday, how do I calculate their age?
524
votes
21answers
120k views
Best way to parse command line arguments in C#? [closed]
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 ...
482
votes
5answers
18k 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;
...
475
votes
17answers
251k views
Deep 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 ...
466
votes
6answers
33k 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 ...
446
votes
31answers
316k 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 ...
441
votes
9answers
121k 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 one of these?
411
votes
21answers
246k 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 ...
406
votes
12answers
83k 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
{
WebId = ...
402
votes
17answers
62k views
ASP.NET Web Site or ASP.NET Web Application?
When I start a new ASP.NET project in Visual Studio i can create a ASP.NET Web Application and new ASP.NET websites in Visual Studio creates new Website.
What's the difference between these two ...
382
votes
9answers
28k 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 ...
378
votes
11answers
123k 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 ...
373
votes
20answers
78k views
What C# mocking framework to use? [closed]
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
...
360
votes
13answers
167k views
Why is Dictionary preferred over hashtable?
In most of programming languages, dictionaries are preferred over hashtables.
What are the reasons behind that?
359
votes
33answers
38k views
Most Useful Attributes [closed]
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 ...
326
votes
10answers
62k views
Open Source Alternatives to Reflector? [closed]
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 ...
296
votes
16answers
43k 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:
...
295
votes
14answers
57k views
What NoSQL solutions are out there for .NET? [closed]
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?
291
votes
124answers
31k views
Favorite Visual Studio keyboard shortcuts [closed]
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.
291
votes
10answers
42k views
Logging best practices [closed]
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?
...
290
votes
4answers
9k 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?
...
288
votes
11answers
233k 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 ...
269
votes
5answers
42k 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 ...
269
votes
10answers
72k 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 ...
267
votes
16answers
16k 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, ... ...
266
votes
21answers
41k 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?
264
votes
0answers
56k views
String vs string in C# [duplicate]
Possible Duplicate:
In C# what is the difference between String and string
In C# the string keyword (highlighted in Visual Studio as a data type) is just a shortcut to the String class ...
257
votes
14answers
46k views
Proper use of the IDisposable interface
I know from reading the MSDN documentation that the "primary" use of the IDisposable interface is to clean up unmanaged resources.
To me, "unmanaged" means things like database connections, sockets, ...
254
votes
9answers
133k 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?
246
votes
22answers
33k 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 ...
243
votes
6answers
27k views
How does the new Windows 8 Runtime (WinRT) compare to Silverlight and WPF? [closed]
I am trying to get my head round the new Windows 8 Runtime that is used to create Metro style apps. I know you can use it with XAML and it is based on .NET so C# and VB.NET can be used to write the ...
236
votes
3answers
84k views
Group By Multiple Columns
How can I do GroupBy Multiple Columns in LINQ
Something similar to this in SQL:
SELECT * FROM <TableName> GROUP BY <Column1>,<Column2>
How can I convert this to LINQ:
...
234
votes
61answers
18k 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 ...
231
votes
23answers
98k 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 connection string in App.Config looks correct - hasn't changed since last it worked - and I've ...
231
votes
8answers
66k views
Can You Loop Through All Enum Values? [duplicate]
Possible Duplicate:
How to enumerate an enum?
public enum Foos
{
A,
B,
C
}
Is there a way to loop through the possible values of Foo?
Basically?
...
228
votes
13answers
18k 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 ...
220
votes
24answers
68k 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 ...
220
votes
4answers
50k views
How to escape brackets in a format string in .Net
How can brackets be escaped in a C# format string so, something like :
String val = "1,2,3"
String.Format(" foo {{0}}", val);
doesn't throw a parse exception but actually outputs the string " foo ...
207
votes
22answers
74k views
Best Free Controls for .NET [closed]
What Free Controls are there for .NET (both Winforms and Webforms)?
194
votes
10answers
42k views
C# Interfaces. Implicit implementation versus 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 ...
193
votes
8answers
97k views
C# Set collection?
Does anyone know if there is a good equivalent to Java's Set collection in C#? I know that you can somewhat mimic a set using a Dictionary or a HashTable by populating but ignoring the keys, but ...
191
votes
10answers
129k views
How do I use WPF bindings with RelativeSource?
How do I use RelativeSource with WPF bindings and what are the different use-cases?
190
votes
14answers
46k views
Which .NET Dependency Injection frameworks are worth looking into? [closed]
Which C#/.NET Dependency Injection frameworks are worth looking into?
And what can you say about their complexity and speed.
185
votes
6answers
8k 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 ...
178
votes
12answers
164k views
How can I get the application's path in .NET in a console app?
I have a console app, and I would like to find the application's path.
In winforms I can use Application.StartupPath to find the current path, but this doesn't seem to be available in a console app?
175
votes
7answers
19k views
What are the true benefits of ExpandoObject?
The ExpandoObject class being added to .NET 4 allows you to arbitrarily set properties onto an object at runtime.
Are there any advantages to this over using a Dictionary<string,object>, or ...
173
votes
3answers
13k views
How is Math.Pow() implemented in .Net Framework?
I was looking for an efficient approach for calculating ab (say a = 2 and b = 50). To start things up, I decided to take a look at the implementation of Math.Pow() function. But in .Net reflector, all ...
173
votes
14answers
62k views
Deserialize JSON into C# dynamic object?
Is there a way to deserialize JSON content into a C# 4 dynamic type? It would be nice to skip creating a bunch of classes in order to use the DataContractJsonSerializer.
173
votes
6answers
84k views
How to enable assembly bind failure logging (Fusion) in .NET
How do I enable assembly bind failure logging (Fusion) in .NET?