Darrell Norton's Blog [MVP]

Sponsors

The Lounge

News

  • Darrell Norton pic

    MVP logo

    View Darrell Norton's profile on LinkedIn

    Currently Reading:

    weewar.com

Advertisement

Images in this post missing? We recently lost them in a site migration. We're working to restore these as you read this. Should you need an image in an emergency, please contact us at imagehelp@codebetter.com
AJAX-based VB and C# code converter

Now this is cool. Carlos Ag has a page that allows you to convert VB to C# or C# to VB as you type with code coloring. Fantastic use of AJAX.

Check it out here: Code Translator VB <-> C#


Posted 06-28-2005 11:04 AM by Darrell Norton
Filed under:

[Advertisement]

Comments

Chris Wallace wrote re: AJAX-based VB and C# code converter
on 06-28-2005 8:34 AM
Cool, but not 100% correct from what I can tell. ex. Response.Write(s.ToString) in VB should translate to Response.Write(s.ToString()); in C# but it doesn't add the () on the end and you wind up with Response.Write(s.ToString); which if I'm not mistaken won't compile.
TomCat wrote re: AJAX-based VB and C# code converter
on 06-28-2005 11:38 AM
Can someone tell me what AJAX is?
Darrell Norton wrote re: AJAX-based VB and C# code converter
on 06-28-2005 12:20 PM
TomCat - see this article for a detailed explanation of "AJAX"
http://www.adaptivepath.com/publications/essays/archives/000385.php
Keith G wrote re: AJAX-based VB and C# code converter
on 06-28-2005 12:54 PM
I was excited when I saw your title. A VB to C# code converter. But then I realized it was a VB.NET to C# converter. Not nearly as valuable.
Darrell Norton wrote re: AJAX-based VB and C# code converter
on 06-28-2005 2:17 PM
Sorry Keith. :(
Angus Logan wrote AJAX-based VB and C# code converter
on 06-28-2005 5:42 PM
TomCat wrote re: AJAX-based VB and C# code converter
on 06-28-2005 9:05 PM
Thank you Darell for the article. So that's what they call it now. Hmm.. how come nobody told me.. just kidding:)

I know this is off topic but I have to ask this. how serious is this? i mean who other than google can afford invest so much money for simple functionlity just to some geeks (btw only geeks are wowed because it's only them know the limitations that AJAX is overcoming and how challenging it is). My guess less 1% of companies. My next question is: is this here to stay and should i as a web developer learn it?
I don't know cz there so much to learn on the server side that gives "real" functionality.

However, the problem that Ajax is solving is real and but i think it's solving it in a very expensive way. Are Smart Clients the alternative? I don't think so because they are not "Web" applications. What do you think of Flash/Flex?
Christopher Steen wrote Link Listing - June 28, 2005
on 06-28-2005 9:34 PM
Link Listing - June 28, 2005
Andrew Connell [MVP MCMS] wrote CodeTranslator: VB.Net to C#
on 07-04-2005 5:32 PM
Frank La Vigne wrote Ajax-Based C#/VB.NET Converter
on 07-06-2005 6:48 AM
Frank La Vigne wrote Ajax-Based C#/VB.NET Converter
on 07-25-2005 7:59 AM
Konamiman wrote re: AJAX-based VB and C# code converter
on 09-12-2005 3:50 AM
I have another bug to report. A line of code like "Dim MyArray(some_size) As SomeType" should be converted to "SomeType[] MyArray=new SomeType[some_size];", but actually it is converted to "SomeType[,] MyArray;"
Weblog wrote Ajax based VB &lt;--&gt; C# convertor
on 10-04-2006 3:39 PM