What is allowed in Visual Basic that's prohibited in C# (or vice versa)? - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T06:45:17Zhttp://stackoverflow.com/feeds/question/966457http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/966457/what-is-allowed-in-visual-basic-thats-prohibited-in-c-or-vice-versa7What is allowed in Visual Basic that's prohibited in C# (or vice versa)?Alex2009-06-08T19:14:27Z2009-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#9664743Answer by m_oLogin for What is allowed in Visual Basic that's prohibited in C# (or vice versa)?m_oLogin2009-06-08T19:17:51Z2009-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#9664784Answer by Tom Ritter for What is allowed in Visual Basic that's prohibited in C# (or vice versa)?Tom Ritter2009-06-08T19:18:25Z2009-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#9664813Answer by Michael Meadows for What is allowed in Visual Basic that's prohibited in C# (or vice versa)?Michael Meadows2009-06-08T19:19:06Z2009-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#9664822Answer by TheTXI for What is allowed in Visual Basic that's prohibited in C# (or vice versa)?TheTXI2009-06-08T19:19:18Z2009-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#9664862Answer by Kane for What is allowed in Visual Basic that's prohibited in C# (or vice versa)?Kane2009-06-08T19:20:05Z2009-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#9664911Answer by Joseph for What is allowed in Visual Basic that's prohibited in C# (or vice versa)?Joseph2009-06-08T19:20:58Z2009-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#9665037Answer by Tomas Lycken for What is allowed in Visual Basic that's prohibited in C# (or vice versa)?Tomas Lycken2009-06-08T19:22:25Z2009-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#9665119Answer by bzlm for What is allowed in Visual Basic that's prohibited in C# (or vice versa)?bzlm2009-06-08T19:24:19Z2009-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#9665263Answer by Marc Gravell for What is allowed in Visual Basic that's prohibited in C# (or vice versa)?Marc Gravell2009-06-08T19:26:50Z2009-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();} // <==== 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#9665461Answer by Dillie-O for What is allowed in Visual Basic that's prohibited in C# (or vice versa)?Dillie-O2009-06-08T19:31:07Z2009-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#9665770Answer by Noctris for What is allowed in Visual Basic that's prohibited in C# (or vice versa)?Noctris2009-06-08T19:36:53Z2009-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#9666295Answer by dss539 for What is allowed in Visual Basic that's prohibited in C# (or vice versa)?dss5392009-06-08T19:46:41Z2009-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#9666643Answer by Konrad Rudolph for What is allowed in Visual Basic that's prohibited in C# (or vice versa)?Konrad Rudolph2009-06-08T19:52:20Z2009-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#9667814Answer by MarkJ for What is allowed in Visual Basic that's prohibited in C# (or vice versa)?MarkJ2009-06-08T20:19:14Z2009-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#9668682Answer by slolife for What is allowed in Visual Basic that's prohibited in C# (or vice versa)?slolife2009-06-08T20:34:12Z2009-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#9670582Answer by rein for What is allowed in Visual Basic that's prohibited in C# (or vice versa)?rein2009-06-08T21:10:28Z2009-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#9670784Answer by Lurker Indeed for What is allowed in Visual Basic that's prohibited in C# (or vice versa)?Lurker Indeed2009-06-08T21:15:46Z2009-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#9672721Answer by Mr Guy for What is allowed in Visual Basic that's prohibited in C# (or vice versa)?Mr Guy2009-06-08T22:11:17Z2009-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#15649912Answer by Richard Pawson for What is allowed in Visual Basic that's prohibited in C# (or vice versa)?Richard Pawson2009-10-14T08:28:08Z2009-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>