Converting vb.net to c# tips - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T05:49:46Zhttp://stackoverflow.com/feeds/question/57473http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/57473/converting-vb-net-to-c-tips0Converting vb.net to c# tipsOded2008-09-11T19:56:53Z2009-02-24T19:36:11Z
<p>I am using reflector disassembly as a quick way to convert some vb.net to c# and am hitting some problems with certain VB-isms:</p>
<ul>
<li>Conversions </li>
<li>Strings</li>
<li>Information.IsNothing </li>
</ul>
<p>When trying to compile the converted code, I need to find and change all of these and more.</p>
<p>Any tips on converting vb.net to C# in a clean way?</p>
http://stackoverflow.com/questions/57473/converting-vb-net-to-c-tips/57485#574853Answer by Darren Kopp for Converting vb.net to c# tipsDarren Kopp2008-09-11T20:04:32Z2008-09-11T20:04:32Z<p><a href="http://converter.telerik.com/" rel="nofollow">http://converter.telerik.com/</a></p>
http://stackoverflow.com/questions/57473/converting-vb-net-to-c-tips/57486#574861Answer by David Mohundro for Converting vb.net to c# tipsDavid Mohundro2008-09-11T20:04:44Z2009-02-24T19:36:11Z<p>Have you tried any code converters? <a href="http://converter.telerik.com/" rel="nofollow">Telerik has one</a>.</p>
http://stackoverflow.com/questions/57473/converting-vb-net-to-c-tips/57497#574974Answer by rpetrich for Converting vb.net to c# tipsrpetrich2008-09-11T20:09:19Z2008-09-11T20:09:19Z<p>In my experience, .NET Reflector is the best way to convert between VB.net/C# even if you've got the source code.</p>
<ul>
<li>Conversions? Could you elaborate?</li>
<li>Strings work the same, just be sure to convert slashes to double-slashes (<code>"C:\"</code> becomes <code>"C:\\"</code> or <code>@"C:\"</code>) and to use the standard methods rather than <code>Mid</code> and <code>Instr</code> and whatnot</li>
<li><code>Information.IsNothing(obj)</code> is equivalent to <code>obj == null</code></li>
</ul>
http://stackoverflow.com/questions/57473/converting-vb-net-to-c-tips/57499#574990Answer by Rismo for Converting vb.net to c# tipsRismo2008-09-11T20:10:41Z2008-09-11T20:10:41Z<p>Have you tried C-Sharpener For VB ?</p>
<p><a href="http://www.elegancetech.com/csvb/csvb.aspx" rel="nofollow">http://www.elegancetech.com/csvb/csvb.aspx</a></p>
http://stackoverflow.com/questions/57473/converting-vb-net-to-c-tips/57503#575031Answer by Scott for Converting vb.net to c# tipsScott2008-09-11T20:12:51Z2008-09-11T20:12:51Z<p>I've been using this one for years:
<a href="http://labs.developerfusion.co.uk/convert/vb-to-csharp.aspx" rel="nofollow">Developer Fusion</a></p>
<p>It's mainly for quick little code snippets that I have in VB that I want to convert to C# quickly. It's not perfect, but it's ok.</p>
http://stackoverflow.com/questions/57473/converting-vb-net-to-c-tips/57548#575481Answer by Cookey for Converting vb.net to c# tipsCookey2008-09-11T20:32:59Z2008-09-15T15:46:00Z<p>Here's a quick <a href="http://www.harding.edu/fmccown/vbnet_csharp_comparison.html" rel="nofollow">comparison chart</a> I look at when I switch between languages.</p>
http://stackoverflow.com/questions/57473/converting-vb-net-to-c-tips/141965#1419650Answer by Joel Coehoorn for Converting vb.net to c# tipsJoel Coehoorn2008-09-26T21:04:14Z2008-09-26T21:04:14Z<p>Most of the Strings and Conversions methods can be used from C# by importing the Microsoft.VisualBasic namespace.</p>
http://stackoverflow.com/questions/57473/converting-vb-net-to-c-tips/141986#1419861Answer by hectorsosajr for Converting vb.net to c# tipshectorsosajr2008-09-26T21:09:17Z2008-09-26T21:09:17Z<p>I've tried several different converters. Surprisingly, the best one I tried is <a href="http://www.icsharpcode.net/OpenSource/SD/" rel="nofollow">SharpDevelop</a>. I load the file into the SharpDevelop IDE, then select convert. I haven't had a single instance of bad code. The coolest thing I use it for is translating VB.NET Win32 API pInvokes. </p>
http://stackoverflow.com/questions/57473/converting-vb-net-to-c-tips/419378#4193780Answer by Luke for Converting vb.net to c# tipsLuke2009-01-07T06:20:30Z2009-01-07T06:20:30Z<p>I have been using <a href="http://www.developerfusion.com/tools/convert/csharp-to-vb/" rel="nofollow">http://www.developerfusion.com/tools/convert/csharp-to-vb/</a> recently without may major problems.</p>