Top ".net" questions

Do NOT use for questions about .NET Core - use [.net-core] instead.

How do I use a 32-bit ODBC driver on 64-bit Server 2008 when the installer doesn't create a standard DSN?

I ran into an issue with some third party software that we use to track software license usage in our …

.net odbc 32bit-64bit registry
What is the default value for enum variable?

An enum variable, anyone know if it is always defaulting to the first element?

c# .net enums
How to bind list to dataGridView?

I seem to be running around in circles and have been doing so in the last hours. I want to …

c# .net binding datagridview
Make TextBox uneditable

I want to make some TextBoxes on my form uneditable, but I want the text to be clear (black not …

c# .net winforms textbox
C# "internal" access modifier when doing unit testing

I'm new to unit testing and I'm trying to figure out if I should start using more of internal access …

c# .net unit-testing tdd
Calculate date from week number

Anyone know an easy way to get the date of the first day in the week (monday here in Europe). …

c# .net week-number
Is there an embeddable Webkit component for Windows / C# development?

I've seen a few COM controls which wrap the Gecko rendering engine (GeckoFX, as well as the control shipped by …

.net com webkit gecko
Finding element in XDocument?

I have a simple XML <AllBands> <Band> <Beatles ID="1234" started="1962">greatest Band<![CDATA[…

c# .net xml linq-to-xml
Has an event handler already been added?

Is there a way to tell if an event handler has been added to an object? I'm serializing a list …

c# .net asp.net
When to use IList and when to use List

I know that IList is the interface and List is the concrete type but I still don't know when to …

c# .net