I know there are tools to migrate VS 2008 application to VS 2010. But anyone knows a tool that can also convert VB.NEt code to C# code.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Load an assembly up in Reflector and you can get a disassembly in C#.
It will not be perfect, as it works off the IL (which is lower level than C# or VB.NET), so you end up with funny iterator blocks and strangely named variables (that may be illegal names in C#). These patterns are pretty easy to figure out and fix, though time consuming.