What is allowed in Visual Basic that's prohibited in C# (or vice versa)? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T06:45:17Z http://stackoverflow.com/feeds/question/966457 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/966457/what-is-allowed-in-visual-basic-thats-prohibited-in-c-or-vice-versa 7 What is allowed in Visual Basic that's prohibited in C# (or vice versa)? Alex 2009-06-08T19:14:27Z 2009-12-04T11:40:25Z <p>This is <strong>code-related</strong> as in what the compiler will allow you to do in one language, but not allow you to do in another language (e.g. optional parameters in VB don't exist in C#).</p> <p>Please provide a code example with your answer, if possible. Thank you!</p> http://stackoverflow.com/questions/966457/what-is-allowed-in-visual-basic-thats-prohibited-in-c-or-vice-versa/966474#966474 3 Answer by m_oLogin for What is allowed in Visual Basic that's prohibited in C# (or vice versa)? m_oLogin 2009-06-08T19:17:51Z 2009-06-08T19:17:51Z <p>The semi-colon that ends up every line in C# is prohibited in VB, and that always makes me smile when I try going back to VB.Net...</p> http://stackoverflow.com/questions/966457/what-is-allowed-in-visual-basic-thats-prohibited-in-c-or-vice-versa/966478#966478 4 Answer by Tom Ritter for What is allowed in Visual Basic that's prohibited in C# (or vice versa)? Tom Ritter 2009-06-08T19:18:25Z 2009-06-08T19:18:25Z <p>VB and C# have different interpretations of what "protected" means.</p> <p><a href="http://stackoverflow.com/questions/509541/difference-between-vb-net-and-c-as-new-webcontrol/509616#509616">Here's an explanation</a> copied below:</p> <blockquote> <p>The default constructor for WebControl is protected.</p> <p>VB and C# have different interpretations of what "protected" means.</p> <p>In VB, you can access a protected member of a class from any method in any type that derives from the class.</p> <p>That is, VB allows this code to compile:</p> <pre><code>class Base protected m_x as integer end class class Derived1 inherits Base public sub Foo(other as Base) other.m_x = 2 end sub end class class Derived2 inherits Base end class </code></pre> <p>Because a "Derived1" is a base, it can access protected members of "other", which is also a base.</p> <p>C# takes a different point of view. It doesn't allow the "sideways" access that VB does. It says that access to protected members can be made via "this" or any object of the same type as the class that contains the method.</p> <p>Because "Foo" here is defined in "Derived1", C# will only allows "Foo" to access "Base" members from a "Derived1" instance. It's possible for "other" to be something that is not a "Derived1" (it could, for example, be a "Derived2"), and so it does not allow access to "m_x".</p> </blockquote> http://stackoverflow.com/questions/966457/what-is-allowed-in-visual-basic-thats-prohibited-in-c-or-vice-versa/966481#966481 3 Answer by Michael Meadows for What is allowed in Visual Basic that's prohibited in C# (or vice versa)? Michael Meadows 2009-06-08T19:19:06Z 2009-06-08T21:08:26Z <p>Off the top of my head (pre 4.0):</p> <p>VB language "features" not supported in C#:</p> <ul> <li>Optional Parameters</li> <li>Late Binding</li> <li>Case insensativity</li> </ul> <p>I'm sure there's more. Your question might get better answers if you ask for specific examples of where each language excels. VB is a currently better than C# when interacting with COM. This is because COM is much less of a headache when optional parameters are available, and when you don't have to bind to the (often unknown type) at compile time.</p> <p>C# on the other hand, is preferable by many when writing complex logic because of its type safety (in that you can't bypass static typing) and its conciseness.</p> <p>In the end, the languages are mostly equivalent, since they only differ on the fringes. Functionally, they are equally capable.</p> <p><strong>EDIT</strong></p> <p>To be clear, I'm not implying that VB doesn't allow static typing... simply that <em>C# doesn't</em> [yet] <em>allow you to bypass static typing</em>. This makes C# a more attractive candidate for certain types of architectures. In the 4.0 C# language spec, you can bypass static typing, but you do it by defining a block of dynamic code, not by declaring the entire file "not strict," which makes it more deliberate and targeted.</p> http://stackoverflow.com/questions/966457/what-is-allowed-in-visual-basic-thats-prohibited-in-c-or-vice-versa/966482#966482 2 Answer by TheTXI for What is allowed in Visual Basic that's prohibited in C# (or vice versa)? TheTXI 2009-06-08T19:19:18Z 2009-06-08T19:19:18Z <p>The new autoproperties in C# have not been done for VB.NET yet.</p> http://stackoverflow.com/questions/966457/what-is-allowed-in-visual-basic-thats-prohibited-in-c-or-vice-versa/966486#966486 2 Answer by Kane for What is allowed in Visual Basic that's prohibited in C# (or vice versa)? Kane 2009-06-08T19:20:05Z 2009-06-08T19:20:05Z <p>The volatile keyword is only available in C# <a href="http://www.devcity.net/Articles/160/5/article.aspx" rel="nofollow">http://www.devcity.net/Articles/160/5/article.aspx</a></p> http://stackoverflow.com/questions/966457/what-is-allowed-in-visual-basic-thats-prohibited-in-c-or-vice-versa/966491#966491 1 Answer by Joseph for What is allowed in Visual Basic that's prohibited in C# (or vice versa)? Joseph 2009-06-08T19:20:58Z 2009-06-08T19:20:58Z <p>In C# you have to assign your variable before you can use it. I think you can turn this off, but it's the default behavior.</p> <p>So something like this:</p> <pre><code>int something; if (something == 10) { ... } </code></pre> <p>Isn't allowed, but the VB equivalent would be.</p> http://stackoverflow.com/questions/966457/what-is-allowed-in-visual-basic-thats-prohibited-in-c-or-vice-versa/966503#966503 7 Answer by Tomas Lycken for What is allowed in Visual Basic that's prohibited in C# (or vice versa)? Tomas Lycken 2009-06-08T19:22:25Z 2009-06-08T19:28:24Z <p>I'm surprised that C#'s <a href="http://www.csharpfriends.com/Articles/getArticle.aspx?articleID=351" rel="nofollow">unsafe code</a> has not been mentioned yet. This is not allowed in VB.NET.</p> http://stackoverflow.com/questions/966457/what-is-allowed-in-visual-basic-thats-prohibited-in-c-or-vice-versa/966511#966511 9 Answer by bzlm for What is allowed in Visual Basic that's prohibited in C# (or vice versa)? bzlm 2009-06-08T19:24:19Z 2009-06-08T19:24:19Z <p>VB.NET has support for CIL Exception Filters, C# doesn't:</p> <pre><code>Try ... Catch ex As SomeException When ex.SomeProperty = 1 ... End Try </code></pre> http://stackoverflow.com/questions/966457/what-is-allowed-in-visual-basic-thats-prohibited-in-c-or-vice-versa/966526#966526 3 Answer by Marc Gravell for What is allowed in Visual Basic that's prohibited in C# (or vice versa)? Marc Gravell 2009-06-08T19:26:50Z 2009-06-08T19:45:07Z <p>In VB you can implement an interface with a method of any name - i.e. a method "Class.A" can implement interface method "Interface.B".</p> <p>In C#, you would have to introduce an extra level of indirection to achieve this - an explicit interface implementation that <em>calls</em> "Class.A".</p> <p>This is mainly noticeable when you want "Class.A" to be <code>protected</code> and/or <code>virtual</code> (explicit interface implementations are neither); if it was just "private" you'd probably just leave it as the explicit interface implementation.</p> <p>C#:</p> <pre><code>interface IFoo { void B(); } class Foo : IFoo { void IFoo.B() {A();} // &lt;==== extra method here protected virtual void A() {} } </code></pre> <p>VB:</p> <pre><code>Interface IFoo Sub B() End Interface Class Foo Implements IFoo Protected Overridable Sub A() Implements IFoo.B End Sub End Class </code></pre> <p>In the IL, VB does this mapping directly (which is fine; it is not necessary for an implementing method to share a name).</p> http://stackoverflow.com/questions/966457/what-is-allowed-in-visual-basic-thats-prohibited-in-c-or-vice-versa/966546#966546 1 Answer by Dillie-O for What is allowed in Visual Basic that's prohibited in C# (or vice versa)? Dillie-O 2009-06-08T19:31:07Z 2009-06-08T19:31:07Z <p>One of my favorites (and bummers)</p> <p>In VB.Net you can struture a switch/case statement as such:</p> <pre><code>Select Case True Case User.Name = "Joe" And User.Role = "BigWig" And SecretTime = "HackerTime" GrantCredentials() End Select </code></pre> <p>which allows you to evaluate some complex evaluations through a switch instead of a variety of if/else blocks. You cannot do this in C#.</p> http://stackoverflow.com/questions/966457/what-is-allowed-in-visual-basic-thats-prohibited-in-c-or-vice-versa/966577#966577 0 Answer by Noctris for What is allowed in Visual Basic that's prohibited in C# (or vice versa)? Noctris 2009-06-08T19:36:53Z 2009-06-08T19:36:53Z <p>Global variables don't exist in c# i think</p> http://stackoverflow.com/questions/966457/what-is-allowed-in-visual-basic-thats-prohibited-in-c-or-vice-versa/966629#966629 5 Answer by dss539 for What is allowed in Visual Basic that's prohibited in C# (or vice versa)? dss539 2009-06-08T19:46:41Z 2009-06-08T19:46:41Z <p>The VB 9.0 compiler automatically translates <a href="http://msdn.microsoft.com/en-us/library/ms364068.aspx#vb9overview%5Ftopic6" rel="nofollow">literal XML</a> into "functional construction" syntax. The C# compiler does not support this nice literal XML syntax.</p> http://stackoverflow.com/questions/966457/what-is-allowed-in-visual-basic-thats-prohibited-in-c-or-vice-versa/966664#966664 3 Answer by Konrad Rudolph for What is allowed in Visual Basic that's prohibited in C# (or vice versa)? Konrad Rudolph 2009-06-08T19:52:20Z 2009-06-08T19:52:20Z <p>VB allows nonvirtual calls to virtual instance methods (<code>call</code> in IL), whereas C# only allows virtual calls (<code>callvirt</code> in IL). Consider the following code:</p> <pre><code>Class Base Public Overridable Sub Foo() Console.WriteLine("Base") End Sub Public Sub InvokeFoo() Me.Foo() MyClass.Foo() End Sub End Class Class Derived : Inherits Base Public Overrides Sub Foo() Console.WriteLine("Derived") End Sub End Class Dim d As Base = New Derived() d.InvokeFoo() </code></pre> <p>The output is:</p> <pre><code>Derived Base </code></pre> <p>That's not possible in C# (without resorting to <code>Reflection.Emit</code>).</p> http://stackoverflow.com/questions/966457/what-is-allowed-in-visual-basic-thats-prohibited-in-c-or-vice-versa/966781#966781 4 Answer by MarkJ for What is allowed in Visual Basic that's prohibited in C# (or vice versa)? MarkJ 2009-06-08T20:19:14Z 2009-06-08T20:19:14Z <p>There were some useful articles in Visual Studio magazine back in Jan 2008.</p> <ul> <li><a href="http://visualstudiomagazine.com/columns/article.aspx?editorialsid=2894" rel="nofollow">What C# developers should know about VB</a></li> <li><a href="http://visualstudiomagazine.com/articles/2008/12/01/what-vb-devs-should-know-about-c.aspx" rel="nofollow">What VB developers should know about C#</a></li> </ul> http://stackoverflow.com/questions/966457/what-is-allowed-in-visual-basic-thats-prohibited-in-c-or-vice-versa/966868#966868 2 Answer by slolife for What is allowed in Visual Basic that's prohibited in C# (or vice versa)? slolife 2009-06-08T20:34:12Z 2009-06-08T20:34:12Z <p>Indexed properties are allowed in VB.NET, but not in C#</p> <pre><code> Private m_MyItems As New Collection(Of String) Public Property MyItems(ByVal index As Integer) As String Get Return m_MyItems.Item(index) End Get Set(ByVal value As String) m_MyItems.Item(index) = value End Set End Property </code></pre> http://stackoverflow.com/questions/966457/what-is-allowed-in-visual-basic-thats-prohibited-in-c-or-vice-versa/967058#967058 2 Answer by rein for What is allowed in Visual Basic that's prohibited in C# (or vice versa)? rein 2009-06-08T21:10:28Z 2009-06-08T21:10:28Z <p>VB has optional parameters on functions.</p> <p>C# will only get these with C# 4.0</p> http://stackoverflow.com/questions/966457/what-is-allowed-in-visual-basic-thats-prohibited-in-c-or-vice-versa/967078#967078 4 Answer by Lurker Indeed for What is allowed in Visual Basic that's prohibited in C# (or vice versa)? Lurker Indeed 2009-06-08T21:15:46Z 2009-06-08T21:15:46Z <p><a href="http://msdn.microsoft.com/en-us/library/6k46st1y.aspx" rel="nofollow">Handles</a> and WithEvents keywords for automatic wiring of EventHandlers.</p> <pre><code>Private Sub btnOKClick(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnOK.Click End Sub </code></pre> http://stackoverflow.com/questions/966457/what-is-allowed-in-visual-basic-thats-prohibited-in-c-or-vice-versa/967272#967272 1 Answer by Mr Guy for What is allowed in Visual Basic that's prohibited in C# (or vice versa)? Mr Guy 2009-06-08T22:11:17Z 2009-06-08T22:11:17Z <p>As Chris Dunaway mentioned, VB.NET has Modules which allow you to define functions and data.</p> <p>VB.NET has the VB6 syntax for linking to methods in DLLs. For example:</p> <pre><code>Declare SetSuspendState Lib "powrprof" As Function (byval hibernate as Int32, byval forceCritical as Int32, byval disableWakeEvent) as Int32 </code></pre> <p>(Although that actual declaration might have to be Marshalled)</p> <p><hr /></p> http://stackoverflow.com/questions/966457/what-is-allowed-in-visual-basic-thats-prohibited-in-c-or-vice-versa/1564991#1564991 2 Answer by Richard Pawson for What is allowed in Visual Basic that's prohibited in C# (or vice versa)? Richard Pawson 2009-10-14T08:28:08Z 2009-12-04T11:40:25Z <p>In C# you can declare a property in an interface as having a 'get', and then implement it in a class with a get and set. </p> <pre><code>public interface IFoo { string Bar {get;} } public class Foo : IFoo { public string Bar {get; set;} } </code></pre> <p>In VB, the equivalent to declating a property with a get would be to declare it ReadOnly. You can't then make the implementation writable.</p> <pre><code>Public Interface IFoo ReadOnly Property Bar() As String End Interface Public Class Foo Implements IFoo Public Property Bar() As String Implements IFoo.Bar 'Compile error here' End Class </code></pre> <p>I find this to be a severe limitation of VB. Quite often I want to define an Interface that allows other code only to be able to read a property, but I need a public setter in the implemented class, for use by the persistor.</p>