Visual Basic .NET (VB.NET) is an object-oriented computer programming language that can be viewed as an evolution of Microsoft's Visual Basic 6 (VB6) but implemented on the Microsoft .NET Framework.
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 ...
114
votes
64answers
12k 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?
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
46k 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 ...
57
votes
6answers
94k views
How do I get my C# program to sleep for 50 msec?
How do I get my C# program to sleep for 50 milliseconds?
This might seem an easy question, but I'm having a temporary brain failure moment!
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 ...
54
votes
4answers
9k views
vb.net - Interrupt form loop and end form
Hey, I have a form that goes through an endless loop and processes data. When I click a button that "closes" the form the form keeps processing even though it is closed. I want the form to completely ...
52
votes
4answers
41k views
Linq to Sql: Multiple left outer joins
I'm having some trouble figuring out how to use more than one left outer join using LINQ to SQL. I understand how to use one left outer join. I'm using VB.NET. Below is my SQL syntax.
T-SQL
...
52
votes
25answers
24k 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 ...
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)?
47
votes
15answers
6k views
I've caught an exception!! Now what?
I've started using try catch blocks (bit late i know!) but now im not sure what to do with the exception once i've caught it. What do people usually do here?
-- Jonesy
Try
...
46
votes
26answers
2k views
How important is the .NET programming language when you choose a new job?
We are currently hiring at the company where I work, and here the codebase is in VB.Net.
We are worried that we miss out on a lot of brilliant programmers, who would never ever consider working with ...
45
votes
2answers
17k views
Is there a conditional ternary operator in VB.NET?
In Perl (and other languages) a conditional ternary operator can be expressed like this:
my $foo = $bar = $buz ? $cat : $dog;
Is there a similar operator in VB.NET?
45
votes
12answers
8k views
Is String.Format as efficient as StringBuilder
Suppose I have a stringbuilder in C# that does this:
StringBuilder sb = new StringBuilder();
string cat = "cat";
sb.Append("the ").Append(cat).(" in the hat");
string s = sb.ToString();
would that ...
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 ...
43
votes
4answers
2k 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 ...
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
733 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
5answers
9k views
VB.NET equivalent to C# var keyword
Is there a VB.NET equivalent to the C# var keyword?
I would like to use it to retrieve the result of a LINQ query.
37
votes
4answers
10k views
VB.net equivalent of C# Property Shorthand?
Is there a VB.net equivalent to the C#:
public string FirstName { get; set; }
I know you can do
Public Property name() As String
Get
Return _name.ToString
End Get
Set(ByVal value ...
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 ...
35
votes
5answers
8k views
Which is generally best to use — StringComparison.OrdinalIgnoreCase or StringComparison.InvariantCultureIgnoreCase?
If I have some code like this:
If key.Equals("search", StringComparison.OrdinalIgnoreCase) Then
' ... do something ...
I don't care about the case, should I use OrdinalIgnoreCase, ...
34
votes
9answers
3k views
Is VB Really Case Insensitive?
I'm not trying to start an argument here, but for whatever reason it's typically stated that VB is case insensitive and C languages aren't (and somehow that is a good thing).
But here's my question: ...
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 ...
33
votes
24answers
11k views
Use Float or Decimal for Accounting Application Dollar Amount?
We are rewriting our legacy Accounting System in VB.NET and SQL Server. We brought in a new team of .NET/ SQL Programmers to do the rewrite. Most of the system is already completed with the Dollar ...
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 ...
32
votes
13answers
15k views
CSV File Imports in .Net
I realize this is a newbie question, but I'm looking for a simple solution - it seems like there should be one.
What's the best way to import a CSV file into a strongly-typed data structure? Again ...
30
votes
8answers
11k views
What is the difference between And and AndAlso in VB.net?
In Vb.net, what is the difference between And and AndAlso? Which should I use?
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 ...
29
votes
4answers
6k views
Is there a VB.NET equivalent for C#'s ?? operator?
Is there a VB.NET equivalent for C#'s ?? operator?
28
votes
5answers
2k 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 ...
28
votes
2answers
6k views
Why does a VB.Net function that returns string only actually return a single character?
I'm calling a function that returns a string, but it's only actually returning the first character of the string it's supposed to be returning.
Here's a sample piece of code to recreate the issue I'm ...
28
votes
19answers
20k views
Should I learn C# or Java? [closed]
Guys, I'm good with VB.Net, I don't see why I should officially learn C#, instead I want to learn Java so I can develop for different platforms. What is your advice?
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
17answers
3k 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.
...