58
votes
56answers
4k views
Hidden Features of VB.NET?
I have learned quite a bit browsing through Hidden Features
of C# and was surprised when I couldn't find something
similar for VB.NET.
So what are some of its hidden or lesser known features?
57
votes
18answers
4k views
Best Free Controls for .NET
What Free Controls are there for .NET (both Winforms and Webforms)?
34
votes
8answers
1k 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 …
34
votes
29answers
2k views
When is it good (if ever) to scrap production code and start over?
We have a software product that was written by a single programmer who is no longer with the company, and have we even have a few customers running the software. I was asked to do a code review and …
30
votes
31answers
3k views
Do you still limit line length in code?
This is a matter on which I would like to gauge the opinion of the community: Do you still limit the length of lines of code to a fixed maximum?
This was certainly a convention of the past for many …
30
votes
38answers
2k views
Should we select VB.NET or C# when upgrading our legacy apps?
At the company where I work, we have a number of legacy apps written in Visual Basic 6.0. Without casting aspersions on the developers who wrote them, suffice it to say we have decided to rewrite the …
27
votes
3answers
945 views
Why C# is always winning over VB.NET?
I wrote a program that allow two classes to "fight". For whatever reason C# always wins. What's wrong with VB.NET ?
static void Main(string[] args)
{
Player a = new A();
Player …
27
votes
11answers
9k views
.NET Configuration (app.config/web.config/settings.settings)
I have a .NET application which has different config files for Debug and Release builds eg. the debug app.config points to a development SQL Server which has debugging enabled and the release target …
20
votes
18answers
2k views
x=x+1 vs. x +=1
I'm under the impression that these two commands result in the same end, namely incrementing X by 1 but that the latter is probably more efficient.
If this is not correct, please explain the diff.
…
20
votes
5answers
1k views
Why doesn’t C# have support for first pass exception filtering?
Note: this is not a duplicate of Jeff's question.
That question asked "Is an equivalent?" I know there isn't, and I want to know why!
The reason I ask is that I've only just become clear on how …
20
votes
11answers
4k views
Free CodeRush Express: worth the time?
DevExpress has announced a free express version of CodeRush (for C# only).
…
20
votes
2answers
2k views
VB.Net function that returns string only returns single character
The other day I was working on project, and ran into a weird bug. I called a function, and it was only returning the first character from the string which it should have been returning. After trying a …
19
votes
18answers
3k 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 …
18
votes
26answers
2k 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 …
18
votes
24answers
7k views
Generating an Excel file in ASP.NET
I am about to add a section to an ASP.NET app (VB.NET codebehind) that will allow a user to get data returned to them as an Excel file, which I will generate based on database data. While there are …
