Converting vb.net to c# tips - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T05:49:46Z http://stackoverflow.com/feeds/question/57473 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/57473/converting-vb-net-to-c-tips 0 Converting vb.net to c# tips Oded 2008-09-11T19:56:53Z 2009-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#57485 3 Answer by Darren Kopp for Converting vb.net to c# tips Darren Kopp 2008-09-11T20:04:32Z 2008-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#57486 1 Answer by David Mohundro for Converting vb.net to c# tips David Mohundro 2008-09-11T20:04:44Z 2009-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#57497 4 Answer by rpetrich for Converting vb.net to c# tips rpetrich 2008-09-11T20:09:19Z 2008-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#57499 0 Answer by Rismo for Converting vb.net to c# tips Rismo 2008-09-11T20:10:41Z 2008-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#57503 1 Answer by Scott for Converting vb.net to c# tips Scott 2008-09-11T20:12:51Z 2008-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#57548 1 Answer by Cookey for Converting vb.net to c# tips Cookey 2008-09-11T20:32:59Z 2008-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#141965 0 Answer by Joel Coehoorn for Converting vb.net to c# tips Joel Coehoorn 2008-09-26T21:04:14Z 2008-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#141986 1 Answer by hectorsosajr for Converting vb.net to c# tips hectorsosajr 2008-09-26T21:09:17Z 2008-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#419378 0 Answer by Luke for Converting vb.net to c# tips Luke 2009-01-07T06:20:30Z 2009-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>