<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>VB and C#, Can't we all play in the sandbox nicely?</title><link>http://blogs.msdn.com/brad_mccabe/archive/2005/05/05/415101.aspx</link><description>One of the things I love about Visual Basic is that the syntax is similar to natural language. This basic design make the code so much easier to read and elegant to me. These are often words used to describe C or C#, but beauty is in the eye of the holder.</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>re: VB and C#, Can't we all play in the sandbox nicely?</title><link>http://blogs.msdn.com/brad_mccabe/archive/2005/05/05/415101.aspx#415102</link><pubDate>Fri, 06 May 2005 00:52:12 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:415102</guid><dc:creator>Rex</dc:creator><description>I'd actually like to know, for curiosity sake, which parts of the .NET framework are written in VB!&lt;br&gt;&lt;br&gt;:)</description></item><item><title>re: VB and C#, Can't we all play in the sandbox nicely?</title><link>http://blogs.msdn.com/brad_mccabe/archive/2005/05/05/415101.aspx#415111</link><pubDate>Fri, 06 May 2005 01:23:22 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:415111</guid><dc:creator>Brad_McCabe</dc:creator><description>Talk to &amp;lt;a href=&amp;quot;&lt;a rel="nofollow" target="_new" href="http://www.panopticoncentral.net/archive/2005/03/02/7762.aspx&amp;quot;&amp;gt;Paul"&gt;http://www.panopticoncentral.net/archive/2005/03/02/7762.aspx&amp;quot;&amp;gt;Paul&lt;/a&gt; Vick&amp;lt;/a&amp;gt; as on of the architects here at Microsoft he can give you the details.</description></item><item><title>re: VB and C#, Can't we all play in the sandbox nicely?</title><link>http://blogs.msdn.com/brad_mccabe/archive/2005/05/05/415101.aspx#415117</link><pubDate>Fri, 06 May 2005 01:34:03 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:415117</guid><dc:creator>Schneider</dc:creator><description>&amp;gt; What did VB got from C++ things like i += 1.&lt;br&gt;&lt;br&gt;Operator overloading? Generics? ... the list goes on. :)&lt;br&gt;&lt;br&gt;&amp;gt; Dim as Sam as Man&lt;br&gt;&lt;br&gt;You naturally speak and think 'Dim'? :) I think you need a more sophisticated example than variable declaration to show how a more 'natural' syntax can effect developer productivity.&lt;br&gt;&lt;br&gt;The final debate is the ';' issue. Writing a program is about defining something very specificially. Any language that uses whitespace (excluding spaces between symbol names of course) means the visual layout of the code becomes part of what the code means!! This is illogical. Code layout/appearance should have nothing to do with code meaning.</description></item><item><title>re: VB and C#, Can't we all play in the sandbox nicely?</title><link>http://blogs.msdn.com/brad_mccabe/archive/2005/05/05/415101.aspx#415121</link><pubDate>Fri, 06 May 2005 01:48:56 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:415121</guid><dc:creator>wpSlider</dc:creator><description>Actually, the .NET framework is more like Delphi (since '92) than VB IMHO.&lt;br&gt;&lt;br&gt;If in one day I had to declare 100 variables typing DIM and AS for each and everyone of them would mean an extra 500 keystrokes. Probably more like 700 if you count the spaces.&lt;br&gt;If more and more parts of the .NET framework are being written in VB, maybe this is why it's taking so long to get out the door!</description></item><item><title>re: VB and C#, Can't we all play in the sandbox nicely?</title><link>http://blogs.msdn.com/brad_mccabe/archive/2005/05/05/415101.aspx#415122</link><pubDate>Fri, 06 May 2005 01:57:37 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:415122</guid><dc:creator>Parikh</dc:creator><description>Pardon me if i sound like a salesman by the end of this comment, but ever since I began using Visual Assist X with VS.NET 2003, I haven't looked back. Simply put, this add-in absolutely hits the nail on the head as far as developer productivity. Being a C# dev it always annoyed me how VB.NET got all the cool autocomplete and pretty formatting while we were left out in the cold. Visual Assist X fills the void cleanly and elegantly. Takes a little getting used to but when you're broken in you'll wonder how you got by without it.</description></item><item><title>re: VB and C#, Can't we all play in the sandbox nicely?</title><link>http://blogs.msdn.com/brad_mccabe/archive/2005/05/05/415101.aspx#415139</link><pubDate>Fri, 06 May 2005 02:49:23 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:415139</guid><dc:creator>Don Demsak</dc:creator><description>Sorry Brad, but since VB.Net has to deal with backward compatibility and C# does not, the VB.Net to IL conversion is never as clean as with C# to IL.  If you want to take a good look at a major example of this, check out my recent post on a big bug with the VB.Net Event Implementation and Serialization: &lt;a rel="nofollow" target="_new" href="http://donxml.com/allthingstechie/archive/2005/04/26/1901.aspx"&gt;http://donxml.com/allthingstechie/archive/2005/04/26/1901.aspx&lt;/a&gt; .  VB.Net adds an extra field (a mulitcast delegate) to the IL, that C# does not, which forces the serialization engine to try to serialize a class which is just listening to an event and not really part of the object model.&lt;br&gt;&lt;br&gt;Don</description></item><item><title>VB and C#, Can't we all play in the sandbox nicely</title><link>http://blogs.msdn.com/brad_mccabe/archive/2005/05/05/415101.aspx#415141</link><pubDate>Fri, 06 May 2005 02:48:12 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:415141</guid><dc:creator>DonXML Demsak's All Things Techie</dc:creator><description /></item><item><title>re: VB and C#, Can't we all play in the sandbox nicely?</title><link>http://blogs.msdn.com/brad_mccabe/archive/2005/05/05/415101.aspx#415152</link><pubDate>Fri, 06 May 2005 03:59:42 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:415152</guid><dc:creator>denny</dc:creator><description>hey what about this&lt;br&gt;&lt;br&gt;drop &amp;quot;DIm&amp;quot; and swap &amp;quot;As&amp;quot; with&lt;br&gt;&lt;br&gt;&amp;quot;Is a&amp;quot;&lt;br&gt;&lt;br&gt;Buffer Is a String&lt;br&gt;MyForm Is a New appForm&lt;br&gt;MyData Is a New DataSet&lt;br&gt;&lt;br&gt;and so on...</description></item><item><title>re: VB and C#, Can't we all play in the sandbox nicely?</title><link>http://blogs.msdn.com/brad_mccabe/archive/2005/05/05/415101.aspx#415183</link><pubDate>Fri, 06 May 2005 22:06:25 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:415183</guid><dc:creator>Adrian Moore</dc:creator><description>I couldn't agree with you more.  In my opinion what makes languages like C# and C++ hard to read is the number of overloads for the } end-curly.  With VB, its much easier to distinguish an End If from an End Select or Next.&lt;br&gt;&lt;br&gt;I think another reason Microsoft uses C# for its development is performance.  Of the many, real-world application comparisons I've done between C# and VB, VB.NET is between 10-20% slower for the same algorithm coded in each language.</description></item><item><title>re: VB and C#, Can't we all play in the sandbox nicely?</title><link>http://blogs.msdn.com/brad_mccabe/archive/2005/05/05/415101.aspx#415185</link><pubDate>Fri, 06 May 2005 22:03:11 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:415185</guid><dc:creator>Jeff Parker</dc:creator><description>** Chuckles ** &lt;br&gt;&lt;br&gt;Well of course with a post like this you are going to get a lot of responses. Many Argumentative. Anyway my two cents and thoughts on your post and no I am not going to be argumentative over which is better. I honestly have no problem with you programming in VB or anyone programming in VB. &lt;br&gt;&lt;br&gt;I was a VB programmer for 6 years. I am C# now and have been since it was invented and will never go back. I have also programmed in basic, ADA, C, Java, progress, Cobol and out of all of them C# is my favorite language. Another problem is I have a lot of languages roaming around in my head.&lt;br&gt;&lt;br&gt;So while I understand that VB is more of an English like language that in it's own right can make the language extremely confusing. A lot of people from other countries say that English is a very confusing language, which is also why to me VB is a more confusing language. A prime example in the English language is the words there, their, and they're. These simple confusions exist within VB. At least to my eyes anyway. The Example of this is for and for each loops. The word For is exactly how two specific operations start. Also, I think to me there is too much room and freedom in the VB language that can lead to bad interpretation not only reading it but from the compiler as well. An Example again is the For next loop&lt;br&gt;&lt;br&gt;Dim counter As Integer&lt;br&gt;For counter = 0 To 10&lt;br&gt;    Console.WriteLine(counter)&lt;br&gt;Next&lt;br&gt;Console.WriteLine(&amp;quot;No Scope in the loop and the integer advanced to &amp;quot; &amp;amp; counter)&lt;br&gt;&lt;br&gt;Is a perfectly legal statement in VB and one that can induce bugs to a great deal, Why because the variable counter is not defined within the scope of the loop hence the scope continues and persist. Now not only does this cause logical errors down the road as a VB program tries to use the variable again which they will because VB 6 coders had to do things like this so they are used to it. Now this is also bad in an application because the variable may not go out of scope for a long time taking up generation 2 garbage collections and quite possibly can even move into generation 3.&lt;br&gt;&lt;br&gt;In C# if you even tried something like this you get compiler errors that you must have a new integer for the counting in the loop.&lt;br&gt;&lt;br&gt;Now like I said, I do not mind if you write in VB, I wrote in VB for years and on the message boards and in newsgroups I have seen hundreds and thousands of bad mistakes by programmers that just do not know any better they just want it to work. You might be saying to yourself No programmer would do this However not only will it compile Microsoft shows them they can do this in the VB dev center &lt;a rel="nofollow" target="_new" href="http://msdn.microsoft.com/vbasic/using/understanding/vbasic/default.aspx?pull=/library/en-us/dv_vstechart/html/vbconvisualbasicnet2003languagechanges.asp#vbconvisualbasicnet2003languagechangesanchor2"&gt;http://msdn.microsoft.com/vbasic/using/understanding/vbasic/default.aspx?pull=/library/en-us/dv_vstechart/html/vbconvisualbasicnet2003languagechanges.asp#vbconvisualbasicnet2003languagechangesanchor2&lt;/a&gt;&lt;br&gt;Now that page may say later on about the scope of the variables unfortunately a lot of VB developers are also your Mort developers. Elvis and Einstein would hopefully read the rest of the page. &lt;br&gt;&lt;br&gt;This very same error can be found in the DotNetNuke Portal V2, don’t know about v3 which is written all in VB. While it may not matter as a web page goes out of scope rather fast. But now you have VB guys as web developers able to develop windows apps and even pocket apps. So knowing this and programming in VB 6 and prior for years, to me VB lends itself to errors more to interpretation and badly written code on a much greater scale. Now that’s not saying you can not write high performing and High quality code. It is just saying a vast majority of the VB code out there has a great deal of problems like this in there because the developer just didn’t know any better that’s the way they had to do it in VB and it still works even though it is a very bad thing. So you can write all the VB code you want, I will never trust it.&lt;br&gt;&lt;br&gt;As far as your pinky goes. Writing C# is much like playing a guitar, at first it seems difficult to understand, and your pinky may hurt and not be as strong. In time your pinky gains a great deal of strength, you fingers become more agile and faster. Your notes you pick are not as muddled and you playing becomes elegant.</description></item><item><title>re: VB and C#, Can't we all play in the sandbox nicely?</title><link>http://blogs.msdn.com/brad_mccabe/archive/2005/05/05/415101.aspx#415207</link><pubDate>Fri, 06 May 2005 22:52:30 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:415207</guid><dc:creator>Daniel Moth</dc:creator><description>Wow Brad, how could you miss the point completely? It is not about syntax, statistics or what MSFT uses or who gets paid what etc. It is not about linking to panopticon (all I need to know from there is that &amp;quot;default instances are good&amp;quot; and that is enough to turn me away). It is about features.&lt;br&gt;&lt;br&gt;1. Put the features of C# 1.0 and VB.NET side by side. Do the same for C# 2.0 and VB2005. In both cases C# simply has more (heck, half the things VB2005 shouts about are already in C# today)&lt;br&gt;2. Future features. We are seeing it with whidbey but it is going to get worst. The languages are taking their own path. I certainly don't want to be with the one that thinks &amp;quot;My&amp;quot; is a great feature.&lt;br&gt;3. Generics. As soon as they came on the scene we knew C# was getting them but VB had to think about it for a while. Luckily the correct decision was made. It could have just as easily gone the other way.&lt;br&gt;&lt;br&gt;Why it is about features? Because the fact that both languages target the same framework and run under the CLR means that any other difference traditionally language designers argued about is gone.&lt;br&gt;&lt;br&gt;I could have mentioned the attitude problem of the VB team (e.g. catering for backwards compatibility and trying to bring VB3 developers to the platform) but actually all that does is translate itself eventually back to features. The Mort and Elvis story is true and one that makes programming language choice obvious for the professional developer. I think this quote wraps it up nicely:&lt;br&gt;&lt;br&gt;“There are experts that use VB and there are non-CS Types that use the C#. We don't deny they exist; we don't zero in on those developers, when we design software.”&lt;br&gt;&lt;br&gt;&amp;lt;em&amp;gt;quote taken from &lt;a rel="nofollow" target="_new" href="http://blogs.msdn.com/brad_mccabe/comments/415101.aspx&amp;lt;/em&amp;gt;"&gt;http://blogs.msdn.com/brad_mccabe/comments/415101.aspx&amp;lt;/em&amp;gt;&lt;/a&gt;&lt;br&gt;&lt;br&gt;Cheers&lt;br&gt;Daniel</description></item><item><title>re: VB and C#, Can't we all play in the sandbox nicely?</title><link>http://blogs.msdn.com/brad_mccabe/archive/2005/05/05/415101.aspx#415210</link><pubDate>Fri, 06 May 2005 23:01:18 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:415210</guid><dc:creator>Daniel Moth</dc:creator><description>Sorry, that should have been:&lt;br&gt;&lt;br&gt;quote taken from &lt;a rel="nofollow" target="_new" href="http://wesnerm.blogs.com/net_undocumented/2003/09/who_are_you_mor.html"&gt;http://wesnerm.blogs.com/net_undocumented/2003/09/who_are_you_mor.html&lt;/a&gt;</description></item><item><title>re: VB and C#, Can't we all play in the sandbox nicely?</title><link>http://blogs.msdn.com/brad_mccabe/archive/2005/05/05/415101.aspx#415278</link><pubDate>Sat, 07 May 2005 05:23:33 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:415278</guid><dc:creator>Bill McCarthy</dc:creator><description>Jeff:&lt;br&gt;&lt;br&gt;i tried this code in C#:&lt;br&gt;&lt;br&gt;int counter;&lt;br&gt;for (counter =0; counter &amp;lt; 10; counter++ )&lt;br&gt;{&lt;br&gt;  Console.WriteLine(counter);&lt;br&gt;}&lt;br&gt;Console.WriteLine(&amp;quot;No Scope in the loop and the integer advanced to &amp;quot; + counter.ToString()) ;&lt;br&gt;&lt;br&gt;&lt;br&gt;It ran fine and absolutely no compile errors.&lt;br&gt;&lt;br&gt;So seems you have your facts wrong ;)&lt;br&gt;&lt;br&gt;&lt;br&gt;Seriously it really amazes me the number of times I see peopel try to say C# is better because of XXX when they really don't have the facts correct.  This thread is jsut one of many real life examples.  Me. well I expect developers, software engineers, architects, or just everyday coders to get their facts straight before making a value judgement based on them.&lt;br&gt;&lt;br&gt;$0.05</description></item><item><title>re: VB and C#, Can't we all play in the sandbox nicely?</title><link>http://blogs.msdn.com/brad_mccabe/archive/2005/05/05/415101.aspx#415337</link><pubDate>Sat, 07 May 2005 09:29:22 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:415337</guid><dc:creator>muzammil khan</dc:creator><description>i have to hold an language which we called VB thatz great fun for me thatz why i used to surf ur website .so please send me an important notes on VB,C# and also C,C++.&lt;br&gt;&lt;br&gt;&lt;br&gt;thanks&lt;br&gt;  your keen browser muzammil khan</description></item><item><title>re: VB and C#, Can't we all play in the sandbox nicely?</title><link>http://blogs.msdn.com/brad_mccabe/archive/2005/05/05/415101.aspx#415348</link><pubDate>Sat, 07 May 2005 10:40:58 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:415348</guid><dc:creator>Richard</dc:creator><description>Thanks for a fun read.  VB is my language of choice because of the natural flow to the syntax.  Long live VB!</description></item><item><title>re: VB and C#, Can't we all play in the sandbox nicely?</title><link>http://blogs.msdn.com/brad_mccabe/archive/2005/05/05/415101.aspx#415354</link><pubDate>Sat, 07 May 2005 12:08:38 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:415354</guid><dc:creator>aljanjaweedi</dc:creator><description>HI all .. &lt;br&gt; &lt;br&gt;  I dont know what to say really alot of experinced poeple post their comment here i may be 2 cent tall in VB.net but may be my way of view simplfy what Brad idea . &lt;br&gt;&lt;br&gt;   First if we take a look to Brad example about vbasic code . we see it's easy to understand and it's close to our sence . The idea that i'm from africa ,the english language it's not my first language and i do learn english at school so it's not that much good . So when i program with vbasic code it's easy to me to understand more than C++ code why?! cause C/C++ syntax is more complex . may be i define a variable 100 times using &amp;quot;DIM&amp;quot; that easy for me to have 100 compiler and logical errors on C/C++ so i'll get lost on my own code ! &lt;br&gt;&lt;br&gt;   Also there are other thing you poeple do not notice. It's the resources , for me as i speak of any african guy in a country full of civil war which you can see only on TV spec CriSes and diseases we do not have the resources to work with Complex code something just like Egyption old language . Diffcult to learn ,understand also to use . We need something use quickly , work fine and perform wiht less bugs!&lt;br&gt;&lt;br&gt;    So i think Vbasic is the Language of POORs  some kind of help to us (third world poeple spec african coutries) . i know some of you will replay to me and say &amp;quot;hey! that's not our problem you better drop the keyboard and carry AK74 more than flashing us with ur view&amp;quot; .     &lt;br&gt;&lt;br&gt;&lt;br&gt;  Thanx All and Salute to you Brad!</description></item><item><title>re: VB and C#, Can't we all play in the sandbox nicely?</title><link>http://blogs.msdn.com/brad_mccabe/archive/2005/05/05/415101.aspx#415463</link><pubDate>Sun, 08 May 2005 05:16:36 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:415463</guid><dc:creator>danielfe</dc:creator><description>Why do you spend time trolling C#? The goal of your post is that everyone should get along, yet you spend the vast majority of the post bashing C#. You're basically adding fuel to the language wars fire that you *should* be trying to put out. If the VB team is spending all their time talking about C#, C# must be doing something right, huh?&lt;br&gt;&lt;br&gt;&amp;gt;&amp;gt;C# is VB with semicolons!&lt;br&gt;Have you ever heard of Java? The C# syntax is MUCH more similar to Java then Visual Basic. &lt;br&gt;&lt;br&gt;Heck, you could probably argue that VB.NET is closer to Java then VB 6.0. VB 6.0 had a form in a *.frm file. With VB.NET, everything is in a class *.vb (like Java). Creating a VB.NET form requires you to create an instance of a form class the same way Java does rather then the more natural Form1.Show() in VB 6.0. I could go on and on.&lt;br&gt;&lt;br&gt;Back to your &amp;quot;C# is VB with semicolons&amp;quot; comment, isn't saying that C# is VB with semicolons just basically saying that we should all use C#? It's close enough, why don't we all just code in C# then? That way you get unsafe code, operator overloading,unsigned types, stronger default type checking, faster performing code (no opcode checks for integer values), XML comments and all the other features that have been in C# since 2001?&lt;br&gt;&lt;br&gt;Also, Sharepoint was originally written in VBScript using classic ASP when it originally came out. When those VBscript developers moved their existing code to .NET they chose C#, not VB.NET. Why?</description></item><item><title>re: VB and C#, Can't we all play in the sandbox nicely?</title><link>http://blogs.msdn.com/brad_mccabe/archive/2005/05/05/415101.aspx#415467</link><pubDate>Sun, 08 May 2005 05:58:49 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:415467</guid><dc:creator>danielfe</dc:creator><description>Of course my comment gets submitted before i finished writing and the post now seems like a total troll, I wanted to point out the BS people put on as &amp;quot;advantages&amp;quot; that people give to C#. While I prefer C#, I don't understand why someone wouldn't choose the language they are most comfortable with.&lt;br&gt;&lt;br&gt;All of the features I pointed are ones that have been used by C# &amp;quot;elitists&amp;quot; as Brad says to show an advantage. In fact they are all available in VB 2005 (and no, C# won't have default instances AFAIK). Wwhat you see is that the languages have more in common then they did before. I never really understood why someone could choose a language that feels foreign to them, unless they had no choice. The other dumb argument is the &amp;quot;this is what Microsoft creates&amp;quot; argument, with the example like Reporting Services uses C#, therefore I must. I cringe when I hear C# supporters say that because Microsoft creates applications in C#, they must as well. The truth is that C++ is the *#1* language at Microsoft and will continue to be. We really don't give C++ enough credit (Sharepoint's core components are actually in C++, therefore all Web developers should now write C++!) Why hasn't everyone said we must now write our applications in C++ because Microsoft does it? The other classic misconception is that no one uses VB.NET inside Microsoft. I think Paul Vick mentioned this before, but VB.NET is used many times more inside Microsoft then VB6 ever was. This inclues the VB team, .NET Framework, Visual Studio, and other products like Commerce Server. The commerce server product has VB, C#, and even some J# in use. Does this mean that everyone should start coding in J#?  It's *all* about personal preference, yet everyone tries to point out the differences more then similarities. It's crazy how many times I've seen the &amp;quot;superiority&amp;quot; posts based on what Microsoft uses. &lt;br&gt;&lt;br&gt;Bottom line, code in the language you want and be happy in the knowledge that your code can interoperate with other languages.</description></item><item><title>re: VB and C#, Can't we all play in the sandbox nicely?</title><link>http://blogs.msdn.com/brad_mccabe/archive/2005/05/05/415101.aspx#415623</link><pubDate>Mon, 09 May 2005 09:06:25 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:415623</guid><dc:creator>Prakash Sachania</dc:creator><description>Again, could not agree more with Brad. You validated what I believed. At the end of the day, I might choose C# but not on the fact that it is simple than VB. Whenever, I have to do any POC or small utilities, I go back to VB.</description></item><item><title>re: VB and C#, Can't we all play in the sandbox nicely?</title><link>http://blogs.msdn.com/brad_mccabe/archive/2005/05/05/415101.aspx#415631</link><pubDate>Mon, 09 May 2005 09:29:13 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:415631</guid><dc:creator>McAkins</dc:creator><description>Hi All,&lt;br&gt;&lt;br&gt;Wanna read the ultimate answer to these questions? Read at the following:&lt;br&gt;&lt;br&gt;Rock My World, hail the Machine! An Argument in the Language War&lt;br&gt;&lt;a rel="nofollow" target="_new" href="http://spaces.msn.com/members/mcakins2/#toppage"&gt;http://spaces.msn.com/members/mcakins2/#toppage&lt;/a&gt;</description></item><item><title>re: VB and C#, Can't we all play in the sandbox nicely?</title><link>http://blogs.msdn.com/brad_mccabe/archive/2005/05/05/415101.aspx#415710</link><pubDate>Mon, 09 May 2005 15:42:11 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:415710</guid><dc:creator>Jeff Parker</dc:creator><description>Bill McCarthy,&lt;br&gt;&lt;br&gt;Hmm, well you are correct, and you learn something new everyday. I tried probably 4 different ways to get that to work in C# before posting. Which I kept trying to make it look like VB I didn't think it could be done every way I tried threw a compiler error. However this more proves my point. I got this on first try in VB and looked it up in the VB Dev Center. VB Lends itself to writing bad code. This is the way you used to do it in VB why not keep doing it that way, even though it is wrong. And because I could do it exactly like I used to do it in VB I wonder how many more millions of lines of VB.net are out there doing this. I looked this up in the C# dev center and the example you show is not shown anywhere at all, at least no where I could find it.</description></item><item><title>re: VB and C#, Can't we all play in the sandbox nicely?</title><link>http://blogs.msdn.com/brad_mccabe/archive/2005/05/05/415101.aspx#415712</link><pubDate>Mon, 09 May 2005 15:44:05 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:415712</guid><dc:creator>Tony Losego</dc:creator><description>Hi, I agree entirely. I'm a VB fan myself. However, might I suggest, at the very least, using Word or any kind of spell and grammar check. The nitpickers that will gripe you will also pick you apart because of that. You made a few ‘to’ instead of ‘too’ and ‘then’ instead of ‘than’ grammar mistakes as well as some spellings that are also words but not what you meant, i.e. ‘receipt’ instead of ‘recipe’. I’m not faulting you, I understood you entirely, and that’s what’s important, but if you’re going to try to make a point with hypercritical types, you might not want to give then anything to follow a tangent with. Of course, maybe those types would always find a tangent because what you say has merit and they like pressing the ';' key for no reason anyway. ;-) Consider possibly having your editor run through your material before you post.&lt;br&gt;&lt;br&gt;Good Luck,&lt;br&gt;Tony</description></item><item><title>re: VB and C#, Can't we all play in the sandbox nicely?</title><link>http://blogs.msdn.com/brad_mccabe/archive/2005/05/05/415101.aspx#416047</link><pubDate>Tue, 10 May 2005 19:15:47 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:416047</guid><dc:creator>Josh D</dc:creator><description>Right on!&lt;br&gt;Nothing is as easy and clearer as VB.&lt;br&gt;But remember then the hand writing of your doctor when he hands you out a prescription. It is not in vain. He belongs to an elite group of people who make the world more difficult to merge into and thus conserve their future. Ditto the C, C++, C# and the rest. (Machine language(?), assembly(?)... etc)&lt;br&gt;&lt;br&gt;JD</description></item><item><title>re: VB and C#, Can't we all play in the sandbox nicely?</title><link>http://blogs.msdn.com/brad_mccabe/archive/2005/05/05/415101.aspx#416063</link><pubDate>Tue, 10 May 2005 19:38:12 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:416063</guid><dc:creator>Bill McCarthy</dc:creator><description>Jeff,&lt;br&gt;&lt;br&gt;Give it up man, you're killing me.. this is too much laughter for my poor old ribs ;)&lt;br&gt;&lt;br&gt;You based your assumption on something you ddin't understand.  Now you know that both VB.NET and C# both provide the same features there.  And yes Jeff it is a feature as it allows you to determine the count outside of a loop should your code do an early exit.  Rather than use a second variable.  In tight loops where you are usign early exiting this is a great performance enhancing feature.&lt;br&gt;&lt;br&gt;As to you more recent claims, yeh you crack me up. &amp;lt;g&amp;gt;  To quote you, it took you 4 attempts to try to achieve that in C# and you couldn't work it out.  You looked in the C# docuemntation and still couldn't find.  Right ?  Now considerign both languages support the same features here it sure seems like not only is C# non intuitive for you but also the documentation is lacking.&lt;br&gt;&lt;br&gt;Thanks for the laugh :)</description></item><item><title>VB and C#, Can't we all play in the sandbox nicely?</title><link>http://blogs.msdn.com/brad_mccabe/archive/2005/05/05/415101.aspx#417424</link><pubDate>Sat, 14 May 2005 08:59:01 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:417424</guid><dc:creator>Bobby</dc:creator><description>Most of the VB.NET-lovers I know don't mind using C# if they have to.  But everyone I know that has used C# substantially really hates going back to VB.NET.&lt;br&gt;&lt;br&gt;Regardless of which language can be proven better than the other, it is a practical matter that the C# community will grow at VB.NET's expense because VB.NET/C# loyalty conversion seems to be a one-way street.  The C# community will continue to be fed from active C/C++/Java communities, whereas VB.NET's reservoir of VB6 converts is drying-up fast.  And, since VB.NET attracts more hobbyists and casual coders it may (unfairly) come to be stigmatized as the &amp;quot;beginner’s .NET language.&amp;quot;  I think that has already happened to some extent due to the differing reputation of the ancestor communities (VB6 versus C/C++/Java) and is evidenced by an otherwise-unexplainable gap in salaries and billing rates in C#’s favor (according to various recent surveys).  Ultimately, the developer community builds a language’s reputation and C# may have begun with the brighter team.&lt;br&gt;&lt;br&gt;Even though the two are considered &amp;quot;equal peers&amp;quot; by .NET, once C# gains noticeable market share over VB.NET it’s going to be the only game in town for corporate development (though Microsoft will surely support VB.NET indefinitely).  I believe this because, even though Microsoft says &amp;quot;your .NET language is a lifestyle choice,&amp;quot; most businesses want to go with the mainstream lifestyle.  All of the various businesses I consult for have mandated either VB.NET or C# company-wide because they don’t want to leave that lifestyle choice up to each developer and prefer not to have a mixed-language code base.  I mostly see VB.NET chosen when conversion of a large VB6 code base is in the plan.&lt;br&gt;&lt;br&gt;Here’s a solution:  Add &amp;quot;C# Syntax&amp;quot; and &amp;quot;VB.NET Syntax&amp;quot; to Visual Studio’s &amp;quot;View&amp;quot; menu and let developers switch their entire project between the two anytime they want!  (I know... it can’t be done.  But some type of conversion utility would be really useful).&lt;br&gt;&lt;br&gt;C# and VB.NET guys mostly DO play in the sandbox nicely, and most &amp;quot;go both ways.&amp;quot;  But even though a language-neutral platform concept is pretty darn cool, a dominant platform language is bound to emerge, as a practical matter, especially for corporate development.  If pressed, I’d have to bet on C#.</description></item><item><title>Brad McCabe's WebLog : VB and C#, Can't we all play in the sandbox nicely?</title><link>http://blogs.msdn.com/brad_mccabe/archive/2005/05/05/415101.aspx#8579519</link><pubDate>Sat, 07 Jun 2008 08:06:35 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8579519</guid><dc:creator>Relationship Compatibility</dc:creator><description>&lt;p&gt;One of the things I love about Visual Basic is that the syntax is similar to natural language. This basic design make the code so much easier to read and elegant to me. These are often words used to describe C or C#, but beauty is in the eye of the holder&lt;/p&gt;
</description></item><item><title> Brad McCabe s WebLog VB and C Can t we all play in the sandbox nicely | Wood TV Stand</title><link>http://blogs.msdn.com/brad_mccabe/archive/2005/05/05/415101.aspx#9679205</link><pubDate>Mon, 01 Jun 2009 20:54:28 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9679205</guid><dc:creator> Brad McCabe s WebLog VB and C Can t we all play in the sandbox nicely | Wood TV Stand</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://woodtvstand.info/story.php?id=7105"&gt;http://woodtvstand.info/story.php?id=7105&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> Brad McCabe s WebLog VB and C Can t we all play in the sandbox nicely | Cellulite Creams</title><link>http://blogs.msdn.com/brad_mccabe/archive/2005/05/05/415101.aspx#9711940</link><pubDate>Tue, 09 Jun 2009 05:50:27 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9711940</guid><dc:creator> Brad McCabe s WebLog VB and C Can t we all play in the sandbox nicely | Cellulite Creams</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://cellulitecreamsite.info/story.php?id=4125"&gt;http://cellulitecreamsite.info/story.php?id=4125&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> Brad McCabe s WebLog VB and C Can t we all play in the sandbox nicely | Best Eye Cream</title><link>http://blogs.msdn.com/brad_mccabe/archive/2005/05/05/415101.aspx#9718097</link><pubDate>Tue, 09 Jun 2009 22:48:31 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9718097</guid><dc:creator> Brad McCabe s WebLog VB and C Can t we all play in the sandbox nicely | Best Eye Cream</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://besteyecreamsite.info/story.php?id=571"&gt;http://besteyecreamsite.info/story.php?id=571&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> Brad McCabe s WebLog VB and C Can t we all play in the sandbox nicely | Hair Growth Products</title><link>http://blogs.msdn.com/brad_mccabe/archive/2005/05/05/415101.aspx#9744625</link><pubDate>Sat, 13 Jun 2009 15:43:07 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9744625</guid><dc:creator> Brad McCabe s WebLog VB and C Can t we all play in the sandbox nicely | Hair Growth Products</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://hairgrowthproducts.info/story.php?id=1720"&gt;http://hairgrowthproducts.info/story.php?id=1720&lt;/a&gt;&lt;/p&gt;
</description></item></channel></rss>