Visual Basic.NET (VB.NET) is a multi-paradigm, managed, type-safe, object-oriented computer programming language. Along with C# and F#, it is one of the main languages targeting the .NET Framework. VB.NET can be viewed as an evolution of Microsoft's Visual Basic 6 (VB6) but implemented on the Microsoft .NET Framework. DO NOT USE this tag for VB6, VBA or VBScript questions.
I've read that it's unwise to use ToUpper and ToLower to perform case-insensitive string comparisons
Using VS2012 working on a VB.NET WPF application. I have a simple MusicPlayer tutorial app I am using to lea
I have the line in vb code: #if Not Debug which I must convert, and I don't see it in c#? Is there
In Visual Studio and C#, when using a built in function such as ToString(), IntelliSense shows a yellow box ex
Is there a way to have multiline strings in VB.NET like Python a = """ multi line string """ or PHP? $a =
I have two objects in C# and don't know if it's Boolean or any other type. However when I try to com
Are all of these equal? Under what circumstances should I choose each over the others? var.ToString() CStr(v
Can you mix vb and c# files in the same project for a class library? Is there some setting that makes it possi
Is it considered an acceptable practice to use Modules instead of Classes with Shared member functions in VB.N
Suppose I have a stringbuilder in C# that does this: StringBuilder sb = new StringBuilder(); string cat = "ca
I'm having some trouble figuring out how to use more than one left outer join using LINQ to SQL. I under
I have a .NET application which has different configuration files for Debug and Release builds. E.g. the debug
I was wondering if it was possible, in a console application, to write characters like ℃ using .NET. When I
I have a class. Public Class Foo Private _Name As String Public Property Name() As String Get
I want to be able to add a range and get updated for the entire bulk. I also want to be able to cancel the ac
For the following block of code: For I = 0 To listOfStrings.Count - 1 If myString.Contains(lstOfStrings.I
I'm trying to get images to display in a WPF ListView styled like a WrapPanel as described in this old AT