Click here to Skip to main content
Click here to Skip to main content

.NET Code Conversion - Convert your code

By , 4 Feb 2012
 

Table of Contents

Introduction

This post explains how to convert the code in .NET.

Background

In lot of programming forums, you can find some questions related to code conversion. For example an enquirer asking a question in VB.NET & answerer(s) posting solution(s) but unfortunately its in C#(instead of VB.NET). After seeing the solution(s), the enquirer replying some thing like "My project developed in VB.NET but your solution is in C#, blah blah blah ....". Then answerer's reply will be something like "You can convert the code, search in web for code convertors". But sometimes Enquirer wants an offline convertor(Reason may be the Internet connection). So this simple post would be useful for them.

SharpDevelop

It's an Open Source Development Environment for .NET. You can download the tool here. Also take a look at the features of SharpDevelop & they have forum so if you have any questions that will help you. Using this you can convert the code.

Supported Programming Languages
For Code conversion, currently SharpDevelop supports the following languages.
  • C#
  • VB.NET
  • Boo
  • Python
  • Ruby
Code Conversion

After installation, create a blank project & write some code. Here I have written some C# code. Now click Tools menu, select option Convert code to & select the language which you want(Here I have selected VB.NET). That's all. Now the code has been converted & generated in new file.

C# Code

C#.NET Code

VB.NET Code

VB.NET Code

Online Convertors - Alternative way

Offline Convertors

Addin(s)/Web services

Addins created from online code conversion Web services.

A Visual Studio Add-In That Converts C# Code To Visual Basic

Before Conversion

Make sure your code is working, for example if you miss single { or anyother things then the conversion will show you syntax error(s) instead of output. See below.

The converter uses SharpDevelop's NRefactory to perform the conversion. For the conversion to work properly, you have to paste a full class or source code file because we don't do "magic" RegEx's or string replacement - our code converter uses a full blown parser, and that's why the source code must be valid.

Even convertors won't convert the code 100%. The main reason is some features doesn't exist in particular language, see the Further reading section. Even Commertial tools convert the code only 99% Or probably you need to code rewrite.

Remember, If you want convert VB6 to C# don't go with that option. Convert VB6 to VB.NET using VS wizard & make sure the code is working and then do VB.NET to C#

Code Rewrite

Read about Rewrite (programming) & check this post Rewrite Code From Scratch which contains good & bad reasons to avoid/code-rewrite.

Multiple Programming Languages in .NET

Alternatively you can use both code in your application if you don't want to convert the code, see below.

VB6 to .NET

VB6 is obsolete by a decade and was always horrible.[^]
Why is anyone still using VB6 in 2011 ? Self loathing ? A dinosaur who refused to move with the times ?[^]
VB6 is dead and was always a joke. Why are you using it ? [^]

In VS, You have a wizard to convert VB6 to VB.NET. AFAIK, There is no freeware to convert VB6 to VB.NET. BTW even if you convert the code using convertor, it won't do that 100%, you must need to do some/more manual changes. Particularly if you used any 3rd party components then it will be a big headache because they(3rd parties) always changing the things in every version, so the VB6 code will show syntax error(s) in VB.NET. Check this bunch.

ASP to .NET

Java to .NET

  • Java Language Conversion Assistant 2.0 - Java Language Conversion Assistant is a tool that automatically converts existing Java-language code into Visual C#
    Retirement of J# language and Java Language Conversion Assistant from future versions of Visual Studio Since customers have told us that the existing J# feature set largely meets their needs and usage of J# is declining, Microsoft is retiring the Visual J# product and Java Language Conversion Assistant tool to better allocate resources for other customer requirements. The J# language and JLCA tool will not be available in future versions of Visual Studio. To preserve existing customer investments in J#, Microsoft will continue to support the J# and JLCA technology that shipped with Visual Studio 2005 through to 2015 as per our product life-cycle strategy.
  • Janett - Java to .Net Translator - Janett translates Java syntax, constructs and calls to Java libraries to C# / .Net counterparts.
  • CSharpJavaMerger Framework - Free and open source C# and Java conversion tool.
  • Java 2 CSharp Translator for Eclipse - That tool makes it possible to automatic translate Eclipse java projects into Visual Studio projects. Generated code can be directly compiled and executed whitout any user modification.

PHP to .NET

Delphi to .NET

  • Delphi.NET - is a collection of Open Source tools and code components that enable Borland Delphi (version 5 or higher) to communicate with the Microsoft .NET-Framework.

C++ to .NET

ColdFusion to .NET

Videos

Further Reading

History

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

thatraja
Web Developer
India India
Member
Programmer | CodeProject MVP, Mentor | Author | Geek | Blogger | Bachelor | Dude
 
About him & his blog? check out here.
 
In Codeproject, he posted a blogpost & more than couple of Tip/Tricks, hope he'll write more soon. And he got a place in CCC table.
 
In programming, he wants to go with new things like HTML5, CSS3, WP7, Silverlight, WPF, WCF, etc.,
 
His hobbies are watching movies, Codeproject, being alone, etc.,

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy Vote of 5mvpRaviRanjankr1 Feb '12 - 4:07 
GeneralMy vote of 5mentorBrij30 Jan '12 - 4:24 
GeneralGood reference article.memberWonde Tadesse29 Jan '12 - 14:08 
QuestionWhole lotta conversions!memberNaerling29 Jan '12 - 9:49 
GeneralMy vote of 5mvpSAKryukov29 Jan '12 - 7:29 
GeneralMy vote of 5mvpAbhinav S28 Jan '12 - 4:19 
QuestionMy 5 for writing about SharpDevelop - Good work :)mvpEspen Harlinn28 Jan '12 - 2:30 
My 5 for writing about SharpDevelop - Good work Smile | :)
Espen Harlinn
Senior Architect, Software - Goodtech Projects & Services
My LinkedIn Profile

SuggestionLink Not workingmemberRajesh Anuhya23 Jan '12 - 20:45 
GeneralRe: Link Not workingmvpthatraja24 Jan '12 - 0:00 
GeneralRe: Link Not workingmemberRajesh Anuhya24 Jan '12 - 0:08 
GeneralRe: Link Not workingmvpthatraja24 Jan '12 - 4:10 
GeneralNicememberkoolprasad200320 Jan '12 - 0:32 
GeneralRe: Nicemvpthatraja22 Jan '12 - 16:35 
GeneralMy vote of 5mvpKanasz Robert18 Jan '12 - 1:01 
GeneralRe: My vote of 5mvpthatraja22 Jan '12 - 16:34 
GeneralMy vote of 5memberambarishtv17 Jan '12 - 1:22 
GeneralRe: My vote of 5mvpthatraja17 Jan '12 - 7:38 
GeneralMy vote of 5memberMarcus Kramer9 Jan '12 - 4:30 
GeneralRe: My vote of 5mvpthatraja10 Jan '12 - 1:58 
BugMy Vote of 5 [Solved]memberClark Kent1239 Jan '12 - 2:55 
GeneralRe: My Vote of 5mvpthatraja9 Jan '12 - 3:30 
QuestionMy Giving 5memberMarkDaniel8 Jan '12 - 22:53 
AnswerRe: My Giving 5mvpthatraja10 Jan '12 - 1:55 
QuestionCustom HandlersmemberSimon_Whale5 Jan '12 - 21:50 
AnswerRe: Custom Handlersmvpthatraja7 Jan '12 - 9:50 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 4 Feb 2012
Article Copyright 2012 by thatraja
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid