From the course: Visual Studio Tips and Techniques for Developers

Unlock the full course today

Join today to access over 22,400 courses taught by industry experts or purchase this course individually.

Extension: Code converter (VB to C#)

Extension: Code converter (VB to C#) - Visual Studio Tutorial

From the course: Visual Studio Tips and Techniques for Developers

Start my 1-month free trial

Extension: Code converter (VB to C#)

- [Instructor] I've worked on projects written in the .NET languages, C# and Visual Basic, and I've done project conversions from Visual Basic to C#, and from C# to Visual Basic. These conversion operations are easier when you have a high quality third-party conversion tool. Today, let's look at a visual studio extension that does the conversion for us. First thing, let's talk about the project. I have two console applications here, TipConsoleVB, that's the VB version, and then I have the C# version here, called TipsConsole. Now this example, here, is from my Visual Basic Essential Training course. This is where I'm talking about how to do loops, and logic, and how to look for certain characters when you're running a console application. I'd like to take this code, here, and I'd like to convert this to C#, and then I'd like to use it over here in this Program.cs file, here, in the static void Main method. Before I…

Contents