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.
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?
129
votes
22answers
27k views

Best Free Controls for .NET [closed]

What Free Controls are there for .NET (both Winforms and Webforms)?
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 ...
82
votes
13answers
35k views

.NET Configuration (app.config/web.config/settings.settings)

I have a .NET application which has different configuration files for Debug and Release builds. E.g. the debug app.config file points to a development SQL Server which has debugging enabled and the ...
68
votes
6answers
47k views

How do you get a string from a MemoryStream?

If I am given a MemoryStream that I know has been populated with a String, how do I get a String back out?
65
votes
6answers
34k views

How to enable assembly bind failure logging (FUSION) in .NET

How to enable assembly bind failure logging (FUSION) in .NET.
58
votes
11answers
40k views

.Net Data structures: ArrayList, List, HashTable, Dictionary, SortedList, SortedDictionary — Speed, memory, and when to use each?

.Net has a lot of complex data structures. Unfortunately, some of them are quite similar and I'm not always sure when to use one and when to use another. Most of my C# and VB books talk about them to ...
54
votes
6answers
2k views

VB.NET vs C# integer division

Anyone care to explain why these two pieces of code exhibit different results? VB.NET v4.0 Dim p As Integer = 16 Dim i As Integer = 10 Dim y As Integer = p / i //Result: 2 C# v4.0 int p = 16; int ...
51
votes
8answers
2k views

The State of Linkers for .NET apps (aka “Please Sir, May I have a Linker” 2009 edition)

Many people here are probably familiar with one of Joel Spolsky most popular blog posts, Please Sir, May I Have a Linker, where he cries out for a way to remove dependencies on the .NET framework so a ...
50
votes
18answers
12k views

Why is there not a ForEach extension method on the IEnumerable interface?

Inspired by another question asking about the missing Zip function: Why is there no ForEach extension method in the Enumerable class? Or anywhere? The only class that gets a ForEach method is ...
48
votes
39answers
4k views

Should we select VB.NET or C# when upgrading our legacy applications?

At the company where I work, we have a number of legacy applications written in Visual Basic 6.0. Without casting aspersions on the developers who wrote them, suffice it to say we have decided to ...
48
votes
5answers
16k views

When should I use a List vs a LinkedList

When is it better to use a List(Of T) vs a LinkedList(Of T)?
45
votes
17answers
8k views

How do you migrate a large app from Visual Basic 6.0 to VB.NET?

My company makes a monolithic piece of software that our customers use to run their car dealerships. The original application was written in Visual Basic 6.0, and it has grown substantially over the ...
44
votes
23answers
2k views

How important is it to be fluent in both C# and VB.NET? [closed]

I started with VB4 way back in the day, so working in VB.NET isn't entirely new to me. Recently, I've been working mostly with C# (I also have a background in C++), but I started maintaining a ...
40
votes
10answers
2k views

Event Signature in .NET — Using a Strong Typed 'Sender'?

I fully realize that what I am proposing does not follow the .NET guidelines, and, therefore, is probably a poor idea for this reason alone. However, I would like to consider this from two possible ...
39
votes
6answers
24k views

Case insensitive string compare in LINQ-to-SQL

I've read that it's unwise to use ToUpper and ToLower to perform case-insensitive string comparisons, but I see no alternative when it comes to LINQ-to-SQL. The ignoreCase and CompareOptions arguments ...
37
votes
2answers
734 views

AppFabric doesn’t recover well from restart

Alright, I’ve successfully deployed AppFabric, and everything was working nicely until we started getting an intermittent exception on the website: ErrorCode < ERRCA0017 >:SubStatus < ...
37
votes
7answers
26k views

How should I cast in VB.NET?

Are all of these equal? Under what circumstances should I choose each over the others? var.ToString() CStr(var) CType(var, String) DirectCast(var, String) EDIT: Suggestion from ...
33
votes
8answers
2k views

Why does C# execute Math.Sqrt() more slowly than VB.NET?

Background While running benchmark tests this morning, my colleagues and I discovered some strange things concerning performance of C# code vs. VB.NET code. We started out comparing C# vs. Delphi ...
33
votes
7answers
5k views

Custom Compiler Warnings

When using the ObsoleteAtribute in .Net it gives you compiler warnings telling you that the object/method/property is obsolete and somthing else should be used. I'm currently working on a project that ...
32
votes
9answers
29k views

WPF: “Items collection must be empty before using ItemsSource.”

I'm trying to get images to display in a WPF ListView styled like a WrapPanel as described in this old ATC Avalon Team article: How to Create a Custom View. When I try to populate the ListView with ...
32
votes
25answers
3k views

Would you go back to VB.NET after getting C#?

I'd spent several years in the day job with VB.net. Out of work I'd flick between it and C# for different projects/hobbies. Now that the day job is almost fully C#, VB.net is starting to look ...
30
votes
13answers
2k views

Is the Microsoft.VisualBasic namespace “true .NET” code?

My dev team is getting ready to start a new project. The shop has been a "VB shop" since the days of VB3, but the prevailing opinion now is that we're a ".NET shop" and since C# was created ...
30
votes
11answers
4k views

Setting Objects to Null/Nothing after use in .NET

Should you set all the objects to null (Nothing in VB.NET) once you have finished with them? I understand that in .NET it is essential to dispose of any instances of objects that implement the ...
29
votes
14answers
2k views

Common programming mistakes in .Net when handling exceptions?

What are some of the most common mistakes you've seen made when handling exceptions? It seems like exception handling can be one of the hardest things to learn how to do "right" in .Net. Especially ...
27
votes
5answers
687 views

Why won't this seemingly correct .NET code compile?

I'm asking in case I'm missing something obvious, but I think I may have stumbled upon a bug in .NET's compiler. I have two projects in a .NET solution, one visual basic, one C#. C# code, consisting ...
25
votes
14answers
2k views

Partial Classes - are they bad design?

I'm wondering why the 'partial class' concept even exists in C#/VB.NET. I'm working on an application and we are reading a (actually very good) book relavant to the development platform we are ...
25
votes
11answers
9k views

Yield In VB.NET

C# has the keyword called yield. VB.NET lacks this keyword. I am curious how some of the VB programmers have gotten around the lack of this keyword. Do you implement your own iterator class? Or do ...
25
votes
4answers
2k views

Should I always use the AndAlso and OrElse operators?

Is there ever a circumstance in which I would not want to use the AndAlso operator rather than the And operator? …or in which I would not want to use the OrElse operator rather than the Or ...
23
votes
12answers
8k views

.NET graph library around?

I am looking for Graph libraries for .net. Are there any out? ps: I mean GRAPH libraries, not graphics nor charting libraries! edit: What I mean is graphs, from graph theory: I also need it to ...
22
votes
10answers
20k views

Shadows vs. Overrides in VB.Net

Would some OO guru mind explaining the significance of these two keywords--what they do and for which context is one or the other preferable?
22
votes
8answers
31k views

Does XSLT have a Split() function?

I have a string in a node and I'd like to split the string on '?' and return the last item in the array. For example, in the block below: <a> <xsl:attribute name="href"> ...
22
votes
6answers
4k views

Is there any way to automate windows forms testing?

I am familiar with nunit for unit testing of the business layer however I am looking now to automate the test of the win forms gui layer. I have seen watin and the watin recorder for automating ...
21
votes
11answers
946 views

Long overdue (for me) question about disposing managed objects in .Net, VB.Net, C#

I can't believe I'm still confused about this but, any way, lets finally nail it: I have a class that overrides OnPaint to do some drawing. To speed things up, I create the pens, brushes etc before ...
21
votes
5answers
6k views

What is the Generic version of a Hashtable?

I been learning basics of generics and it looks like it can really improve the performance of the application. But, I am not able to see the generic equivalent of Hashtable. Please share some sample ...
20
votes
11answers
766 views

What puzzles me…Are .NET languages the mainstream languages for Windows (standalone) applications?

I'm an inquisitive .NET student without any commercial working knowledge and I have been puzzled by what exactlty are .NET languages meant for? Q1.If you look on job websites, .NET seems mainly used ...
20
votes
3answers
4k views

Detecting remote desktop connection

Is there anyway, in a program, to detect if a program is being run from inside a remote desktop session or if the program is being run normal in .NET 2.0? What I'm trying to do is, I create a ...
20
votes
3answers
2k views

Getting hash of a list of strings

I would like to write a function GetHashCodeOfList() which returns a hashcode of a list of strings regardless of order. Given 2 lists with the same strings should return the same hashcode. ArrayList ...
20
votes
4answers
2k views

What is Environment.FailFast?

What is Environment.FailFast? How is it useful?
20
votes
3answers
10k views

Are there any 'ok' Image Recognition libraries for .NET?

I want to be able to compare an image taken from a webcam to an image stored on my computer. The library doesn't need to be one hundred percent accurate as it won't be used in anything mission ...
19
votes
4answers
688 views

Why does this extension method throw a NullReferenceException in VB.NET?

From previous experience I had been under the impression that it's perfectly legal (though perhaps not advisable) to call extension methods on a null instance. So in C#, this code compiles and runs: ...
19
votes
8answers
1k views

Any sense to set obj = null(Nothing) in Dispose()?

Is there any sense to set custom object to null(Nothing in VB.NET) in the Dispose() method? Could this prevent memory leaks or it's useless?! Let's consider two examples: public class Foo : ...
19
votes
5answers
32k views

How sort a System.Collections.Generic.List in VB.Net?

I using a genric list(m_equipmentList ) which is collection of objects (Schedule_Payitem). How can sort list according to a proerty of child object ? Dim m_equipmentList As New List(Of ...
19
votes
6answers
5k views

How to avoid HttpRequestValidationException in ASP.NET MVC rendering the same view which caused the exception

I just want to know how to validate (or clean) user input in ASP.NET MVC so that an HttpRequestValidationException will not be thrown regardless of the values submitted. For example, with a text ...
17
votes
2answers
225 views
+50

How can I stop my application from recieving a certain “message”?

POSSIBLE SOLUTION FOUND! I believe I have found a solution! I will be continuing testing to make sure it DOES in fact work, but I'm hopeful :) I have detailed how I found the solution in EDIT THREE ...
17
votes
2answers
1k views

Can VB.NET be forced to initialize instance variables BEFORE invoking the base type constructor?

After debugging a particularly tricky issue in VB.NET involving the order in which instance variables are initialized, I discovered that there is a breaking discrepancy between the behavior that I ...
17
votes
7answers
10k views

Select either a file or folder from the same dialog in .NET

Is there an "easy" way to select either a file OR a folder from the same dialog? In many apps I create I allow for both files or folders as input. Until now i always end up creating a switch to ...
17
votes
7answers
5k views

How do I get a human-readable file size using .NET?

I assume this was already answered somewhere on SO, but I must be looking for the wrong keywords. I'll gladly remove this question if its a dup. If not, let's answer the question here. Example: ...
16
votes
6answers
543 views

How to calculate the total time a user spending on an application?

I want to create an application that able to calculate the total time the user (i.e. myself) spent on a particular application, for example Firefox. And this application should display warning message ...

1 2 3 4 5 101