Hidden Features of VB.NET? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T20:27:14Z http://stackoverflow.com/feeds/question/102084 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/102084/hidden-features-of-vb-net 58 Hidden Features of VB.NET? Sean Gough 2008-09-19T14:07:01Z 2009-12-17T22:50:43Z <p>I have learned quite a bit browsing through <a href="http://stackoverflow.com/questions/9033/hidden-features-of-c">Hidden Features of C#</a> and was surprised when I couldn't find something similar for VB.NET.</p> <p>So what are some of its hidden or lesser known features?</p> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/102111#102111 18 Answer by Joel Coehoorn for Hidden Features of VB.NET? Joel Coehoorn 2008-09-19T14:10:43Z 2008-09-19T15:34:01Z <ul> <li>AndAlso/OrElse logical operators</li> </ul> <p>(EDIT: Learn more here: <a href="http://stackoverflow.com/questions/55013/should-i-always-use-the-andalso-and-orelse-operators">Should I always use the AndAlso and OrElse operators?</a>)</p> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/102112#102112 19 Answer by Jasha87 for Hidden Features of VB.NET? Jasha87 2008-09-19T14:10:48Z 2008-09-19T14:10:48Z <p>One major time saver I use all the time is the <strong>With</strong> keyword:</p> <pre><code>With ReallyLongClassName .Property1 = Value1 .Property2 = Value2 ... End With </code></pre> <p>I just don't like typing more than I have to!</p> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/102113#102113 2 Answer by Sam Erwin for Hidden Features of VB.NET? Sam Erwin 2008-09-19T14:10:56Z 2008-09-19T14:10:56Z <p>I don't know how hidden you'd call it, but the Iif([expression],[value if true],[value if false]) As Object function could count.</p> <p>It's very similar, in a way, to the ? : (ternary) operator in a lot of C-like languages. However, it's important to note that it does evaluate all of the parameters, so it's important to not pass in anything that may cause an exception (unless you want it to) or anything that may cause unintended side-effects.</p> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/102139#102139 3 Answer by Joel Coehoorn for Hidden Features of VB.NET? Joel Coehoorn 2008-09-19T14:13:39Z 2008-09-19T14:13:39Z <ul> <li>Child namespaces are in scope after importing their parent. For exampe, rather than having to import System.IO or say System.IO.File to use the File class, you can just say IO.File. That's a simple example: there are places where the feature really comes in handy, and C# doesn't do it.</li> </ul> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/102146#102146 23 Answer by Konrad Rudolph for Hidden Features of VB.NET? Konrad Rudolph 2008-09-19T14:14:25Z 2008-10-01T16:40:54Z <h1><code>If</code> conditional and coalesce operator</h1> <blockquote> <p>I don't know how hidden you'd call it, but the Iif([expression],[value if true],[value if false]) As Object function could count.</p> </blockquote> <p>It's not so much hidden as <strong>deprecated</strong>! VB 9 has the <code>If</code> operator which is much better and works exactly as C#'s conditional and coalesce operator (depending on what you want):</p> <pre><code>Dim x = If(a = b, c, d) Dim hello As String = Nothing Dim y = If(hello, "World") </code></pre> <p><hr /></p> <p>Edited to show another example:</p> <p>This will work with <code>If()</code>, but cause an exception with <code>IIf()</code></p> <pre><code>Dim x = If(b&lt;&gt;0,a/b,0) </code></pre> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/102160#102160 81 Answer by torial for Hidden Features of VB.NET? torial 2008-09-19T14:16:17Z 2009-06-02T16:09:26Z <p>The Exception When Clause is largely unknown.</p> <p>Consider this:</p> <pre><code>Public Sub Login(host as string, user as String, password as string, Optional bRetry as Boolean = False) Try ssh.Connect(host, user, password) Catch ex as TimeoutException When Not bRetry ''//Try again, but only once. Login(host, user, password, True) Catch ex as TimeoutException ''//Log exception End Try End Sub </code></pre> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/102178#102178 25 Answer by Nescio for Hidden Features of VB.NET? Nescio 2008-09-19T14:17:56Z 2008-09-19T14:17:56Z <p>Object initialization is in there too!</p> <pre><code>Dim x as New MyClass With {.Prop1 = foo, .Prop2 = bar} </code></pre> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/102190#102190 1 Answer by Joel Coehoorn for Hidden Features of VB.NET? Joel Coehoorn 2008-09-19T14:19:08Z 2008-09-19T14:19:08Z <ul> <li>I used to be very fond of optional function parameters, but I use them less now that I have to go back and forth between C# and VB a lot. When will C# support them? C++ and even C had them (of a sort)!</li> </ul> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/102212#102212 8 Answer by torial for Hidden Features of VB.NET? torial 2008-09-19T14:22:04Z 2008-09-19T14:22:04Z <p>Import aliases are also largely unknown:</p> <pre><code>Import winf = System.Windows.Forms ''Later Dim x as winf.Form </code></pre> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/102217#102217 51 Answer by Konrad Rudolph for Hidden Features of VB.NET? Konrad Rudolph 2008-09-19T14:22:32Z 2009-06-02T16:07:41Z <h1>Custom <code>Enum</code>s</h1> <p>One of the real <em>hidden</em> features of VB is the <code>completionlist</code> XML documentation tag that can be used to create own <code>Enum</code>-like types with extended functionality. This feature doesn't work in C#, though.</p> <p>One example from a recent code of mine:</p> <pre><code>' ''' &lt;completionlist cref="RuleTemplates"/&gt; Public Class Rule Private ReadOnly m_Expression As String Private ReadOnly m_Options As RegexOptions Public Sub New(ByVal expression As String) Me.New(expression, RegexOptions.None) End Sub Public Sub New(ByVal expression As String, ByVal options As RegexOptions) m_Expression = expression m_options = options End Sub Public ReadOnly Property Expression() As String Get Return m_Expression End Get End Property Public ReadOnly Property Options() As RegexOptions Get Return m_Options End Get End Property End Class Public NotInheritable Class RuleTemplates Public Shared ReadOnly Whitespace As New Rule("\s+") Public Shared ReadOnly Identifier As New Rule("\w+") Public Shared ReadOnly [String] As New Rule("""([^""]|"""")*""") End Class </code></pre> <p>Now, when assigning a value to a variable declared as <code>Rule</code>, the IDE offers an IntelliSense list of possible values from <code>RuleTemplates</code>.</p> <h2>/EDIT:</h2> <p>Since this is a feature that relies on the IDE, it's hard to show how this looks when you use it but I'll just use a screenshot:</p> <p><img src="http://page.mi.fu-berlin.de/krudolph/stuff/completionlist.png" alt="Completion list in action" /></p> <p>In fact, the IntelliSense is 100% identical to what you get when using an <code>Enum</code>.</p> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/102229#102229 8 Answer by torial for Hidden Features of VB.NET? torial 2008-09-19T14:24:00Z 2008-09-19T14:24:00Z <p>The Using statement is new as of VB 8, C# had it from the start. It calls dispose automagically for you.</p> <p>E.g.</p> <pre><code>Using lockThis as New MyLocker(objToLock) End Using </code></pre> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/102244#102244 2 Answer by chrissie1 for Hidden Features of VB.NET? chrissie1 2008-09-19T14:26:17Z 2008-09-19T14:26:17Z <p>Aliassing namespaces</p> <pre><code>Imports Lan = Langauge </code></pre> <p>Although not unique to VB.Net it is often forgotten when running into namespace conflicts.</p> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/102251#102251 2 Answer by Nescio for Hidden Features of VB.NET? Nescio 2008-09-19T14:26:38Z 2008-09-19T14:26:38Z <p>It is also important to remember that VB.NET projects, by default, have a root namespace that is part of the project’s properties. By default this root namespace will have the same name as the project. When using the Namespace block structure, Names are actually appended to that root namespace. For example: if the project is named MyProject, then we could declare a variable as: </p> <pre><code>Private obj As MyProject.MyNamespace.MyClass </code></pre> <p>To change the root namespace, use the Project -> Properties menu option. The root namespace can be cleared as well, meaning that all Namespace blocks become the root level for the code they contain. </p> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/102267#102267 11 Answer by torial for Hidden Features of VB.NET? torial 2008-09-19T14:28:48Z 2008-09-19T14:28:48Z <p>This is built-in, and a definite advantage over C#. The ability to implement an interface Method without having to use the same name.</p> <p>Such as:</p> <pre><code>Public Sub GetISCSIAdmInfo(ByRef xDoc As System.Xml.XmlDocument) Implements IUnix.GetISCSIInfo End Sub </code></pre> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/102321#102321 27 Answer by Nescio for Hidden Features of VB.NET? Nescio 2008-09-19T14:34:09Z 2008-09-19T14:34:09Z <p>Oh! and don't forget <a href="http://msdn.microsoft.com/en-us/library/bb384629.aspx" rel="nofollow">XML Literals</a>.</p> <pre><code>Dim contact2 = _ &lt;contact&gt; &lt;name&gt;Patrick Hines&lt;/name&gt; &lt;%= From p In phoneNumbers2 _ Select &lt;phone type=&lt;%= p.Type %&gt;&gt;&lt;%= p.Number %&gt;&lt;/phone&gt; _ %&gt; &lt;/contact&gt; </code></pre> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/102369#102369 32 Answer by Konrad Rudolph for Hidden Features of VB.NET? Konrad Rudolph 2008-09-19T14:40:02Z 2009-07-13T17:37:30Z <h1>Typedefs</h1> <p>VB knows a primitive kind of <code>typedef</code> via <code>Import</code> aliases:</p> <pre><code>Imports S = System.String Dim x As S = "Hello" </code></pre> <p>This is more useful when used in conjunction with generic types:</p> <pre><code>Imports StringPair = System.Collections.Generic.KeyValuePair(Of String, String) </code></pre> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/102408#102408 0 Answer by Booji Boy for Hidden Features of VB.NET? Booji Boy 2008-09-19T14:44:50Z 2008-09-19T14:44:50Z <p>You can use REM to comment out a line instead of ' . Not super useful, but helps important comments standout w/o using "!!!!!!!" or whatever. </p> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/102435#102435 8 Answer by torial for Hidden Features of VB.NET? torial 2008-09-19T14:48:10Z 2009-11-20T23:26:38Z <p>If you need a variable name to match that of a keyword, enclose it with brackets. Not nec. the best practice though - but it can be used wisely.</p> <p>e.g. </p> <pre><code>Class CodeException Public [Error] as String ''... End Class ''later Dim e as new CodeException e.Error = "Invalid Syntax" </code></pre> <p>e.g. Example from comments(@Pondidum):</p> <pre><code>Class Timer Public Sub Start() ''... End Sub Public Sub [Stop]() ''... End Sub </code></pre> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/102471#102471 6 Answer by torial for Hidden Features of VB.NET? torial 2008-09-19T14:51:41Z 2008-09-19T14:51:41Z <p>Title Case in VB.Net can be achieved by an old VB6 fxn:</p> <pre><code>StrConv(stringToTitleCase, VbStrConv.ProperCase,0) ''0 is localeID </code></pre> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/103285#103285 23 Answer by Konrad Rudolph for Hidden Features of VB.NET? Konrad Rudolph 2008-09-19T16:06:08Z 2008-09-19T17:21:38Z <h1><code>DirectCast</code></h1> <p><code>DirectCast</code> is a marvel. On the surface, it works similar to the <code>CType</code> operator in that it converts an object from one type into another. However, it works by a much stricter set of rules. <code>CType</code>'s actual behaviour is therefore often opaque and it's not at all evident which kind of conversion is executed.</p> <p><code>DirectCast</code> only supports two distinct operations:</p> <ul> <li>Unboxing of a value type, and</li> <li>upcasting in the class hierarchy.</li> </ul> <p>Any other cast will not work (e.g. trying to unbox an <code>Integer</code> to a <code>Double</code>) and will result in a compile time/runtime error (depending on the situation and what can be detected by static type checking). I therefore use <code>DirectCast</code> whenever possible, as this captures my intent best: depending on the situation, I either want to unbox a value of known type or perform an upcast. End of story.</p> <p>Using <code>CType</code>, on the other hand, leaves the reader of the code wondering what the programmer really intended because it resolves to all kinds of different operations, including calling user-defined code.</p> <p>Why is this a hidden feature? The VB team has published a guideline<sup>1</sup> that discourages the use of <code>DirectCast</code> (even though it's actually faster!) in order to make the code more uniform. I argue that this is a bad guideline that should be reversed: <strong>Whenever possible, favour <code>DirectCast</code> over the more general <code>CType</code> operator.</strong> It makes the code much clearer. <code>CType</code>, on the other hand, should only be called if this is indeed intended, i.e. when a narrowing <code>CType</code> operator (cf. <a href="http://msdn.microsoft.com/en-us/library/yf7b9sy7(VS.80).aspx" rel="nofollow">operator overloading</a>) should be called.</p> <p><hr /></p> <p><sup>1)</sup> I'm unable to come up with a link to the guideline but I've found <a href="http://www.panopticoncentral.net/archive/2003/07/10/149.aspx" rel="nofollow">Paul Vick's take on it</a> (chief developer of the VB team):</p> <blockquote> <p>In the real world, you're hardly ever going to notice the difference, so you might as well go with the more flexible conversion operators like CType, CInt, etc.</p> </blockquote> <p><hr /></p> <p>(EDIT by Zack: Learn more here: <a href="http://stackoverflow.com/questions/40764/how-should-i-cast-in-vbnet">How should I cast in VB.NET?</a>)</p> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/103589#103589 8 Answer by Technobabble for Hidden Features of VB.NET? Technobabble 2008-09-19T16:44:56Z 2009-09-25T21:48:40Z <p>Consider the following event declaration</p> <pre><code>Public Event SomethingHappened As EventHandler </code></pre> <p>In C#, you can check for event subscribers by using the following syntax:</p> <pre><code>if(SomethingHappened != null) { ... } </code></pre> <p>However, the VB.NET compiler does not support this. It actually creates a hidden private member field which is not visible in IntelliSense:</p> <pre><code>If Not SomethingHappenedEvent Is Nothing OrElse SomethingHappenedEvent.GetInvocationList.Length = 0 Then ... End If </code></pre> <p>More Information:</p> <p><a href="http://jelle.druyts.net/2003/05/09/BehindTheScenesOfEventsInVBNET.aspx" rel="nofollow">http://jelle.druyts.net/2003/05/09/BehindTheScenesOfEventsInVBNET.aspx</a> <a href="http://blogs.msdn.com/vbteam/archive/2009/09/25/testing-events-for-nothing-null-doug-rothaus.aspx" rel="nofollow">http://blogs.msdn.com/vbteam/archive/2009/09/25/testing-events-for-nothing-null-doug-rothaus.aspx</a></p> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/103836#103836 16 Answer by Konrad Rudolph for Hidden Features of VB.NET? Konrad Rudolph 2008-09-19T17:20:29Z 2009-06-02T15:11:39Z <h1>Custom Events</h1> <p>Though seldom useful, event handling can be heavily customized:</p> <pre><code>Public Class ApplePie Private ReadOnly m_BakedEvent As New List(Of EventHandler)() Custom Event Baked As EventHandler AddHandler(ByVal value As EventHandler) Console.WriteLine("Adding a new subscriber: {0}", value.Method) m_BakedEvent.Add(value) End AddHandler RemoveHandler(ByVal value As EventHandler) Console.WriteLine("Removing subscriber: {0}", value.Method) m_BakedEvent.Remove(value) End RemoveHandler RaiseEvent(ByVal sender As Object, ByVal e As EventArgs) Console.WriteLine("{0} is raising an event.", sender) For Each ev In m_BakedEvent ev.Invoke(sender, e) Next End RaiseEvent End Event Public Sub Bake() ''// 1. Add ingredients ''// 2. Stir ''// 3. Put into oven (heated, not pre-heated!) ''// 4. Bake RaiseEvent Baked(Me, EventArgs.Empty) ''// 5. Digest End Sub End Class </code></pre> <p>This can then be tested in the following fashion:</p> <pre><code>Module Module1 Public Sub Foo(ByVal sender As Object, ByVal e As EventArgs) Console.WriteLine("Hmm, freshly baked apple pie.") End Sub Sub Main() Dim pie As New ApplePie() AddHandler pie.Baked, AddressOf Foo pie.Bake() RemoveHandler pie.Baked, AddressOf Foo End Sub End Module </code></pre> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/167834#167834 14 Answer by Joel Coehoorn for Hidden Features of VB.NET? Joel Coehoorn 2008-10-03T16:49:54Z 2009-06-02T15:13:46Z <p><strong>Static members in methods.</strong></p> <p>For example:</p> <pre><code>Function CleanString(byval input As String) As String Static pattern As New RegEx("...") return pattern.Replace(input, "") End Function </code></pre> <p>In the above function, the pattern regular expression will only ever be created once no matter how many times the function is called. </p> <p>Another use is to keep an instance of "random" around:</p> <pre><code>Function GetNextRandom() As Integer Static r As New Random(getSeed()) Return r.Next() End Function </code></pre> <p>Also, this isn't the same as simply declaring it as a Shared member of the class; items declared this way are guaranteed to be thread-safe as well. It doesn't matter in this scenario since the expression will never change, but there are others where it might.</p> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/190868#190868 16 Answer by splattne for Hidden Features of VB.NET? splattne 2008-10-10T11:13:39Z 2008-10-10T11:13:39Z <p>I really like the <strong>"My" Namespace</strong> which was introduced in Visual Basic 2005. <em>My</em> is a shortcut to several groups of information and functionality. It provides quick and intuitive access to the following types of information:</p> <ul> <li><strong>My.Computer</strong>: Access to information related to the computer such as file system, network, devices, system information, etc. It provides access to a number of very important resources including My.Computer.Network, My.Computer.FileSystem, and My.Computer.Printers.</li> <li><strong>My.Application</strong>: Access to information related to the particular application such as name, version, current directory, etc.</li> <li><strong>My.User</strong>: Access to information related to the current authenticated user.</li> <li><strong>My.Resources</strong>: Access to resources used by the application residing in resource files in a strongly typed manner.</li> <li><strong>My.Settings</strong>: Access to configuration settings of the application in a strongly typed manner.</li> </ul> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/198134#198134 3 Answer by for Hidden Features of VB.NET? 2008-10-13T16:12:36Z 2008-10-13T16:12:36Z <p>may be this link should help</p> <p><a href="http://blogs.msdn.com/vbteam/archive/2007/11/20/hidden-gems-in-visual-basic-2008-amanda-silver.aspx" rel="nofollow">http://blogs.msdn.com/vbteam/archive/2007/11/20/hidden-gems-in-visual-basic-2008-amanda-silver.aspx</a></p> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/324153#324153 8 Answer by dr. evil for Hidden Features of VB.NET? dr. evil 2008-11-27T16:24:49Z 2009-06-02T16:06:22Z <p><strong>Optional Parameters</strong></p> <p>Optionals are so much easier than creating a new overloads, such as :</p> <pre><code>Function CloseTheSystem(Optional ByVal msg AS String = "Shutting down the system...") Console.Writeline(msg) ''//do stuff End Function </code></pre> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/337653#337653 12 Answer by rich for Hidden Features of VB.NET? rich 2008-12-03T16:03:22Z 2009-07-14T10:03:36Z <p>Passing parameters by name and, so reordering them</p> <pre><code>Sub MyFunc(Optional msg as String= "", Optional displayOrder As integer = 0) 'Do stuff End function </code></pre> <p>Usage:</p> <pre><code>Module Module1 Sub Main() MyFunc() 'No params specified End Sub End Module </code></pre> <p>Can also be called using the ":=" parameter specification in any order:</p> <pre><code>MyFunc(displayOrder:=10, msg:="mystring") </code></pre> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/381331#381331 6 Answer by torial for Hidden Features of VB.NET? torial 2008-12-19T15:41:46Z 2009-05-13T13:47:51Z <p><strong>Properties with parameters</strong> </p> <p>I have been doing some C# programming, and discovered a feature that was missing that VB.Net had, but was not mentioned here.</p> <p>An example of how to do this (as well as the c# limitation) can be seen at: <a href="http://stackoverflow.com/questions/236530/using-the-typical-get-set-properties-in-c-with-parameters">http://stackoverflow.com/questions/236530/using-the-typical-get-set-properties-in-c-with-parameters</a></p> <p>I have excerpted the code from that answer:</p> <pre><code>Private Shared m_Dictionary As IDictionary(Of String, Object) = _ New Dictionary(Of String, Object) Public Shared Property DictionaryElement(ByVal Key As String) As Object Get If m_Dictionary.ContainsKey(Key) Then Return m_Dictionary(Key) Else Return [String].Empty End If End Get Set(ByVal value As Object) If m_Dictionary.ContainsKey(Key) Then m_Dictionary(Key) = value Else m_Dictionary.Add(Key, value) End If End Set End Property </code></pre> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/394200#394200 21 Answer by torial for Hidden Features of VB.NET? torial 2008-12-26T19:59:06Z 2009-06-02T16:05:21Z <p>This is a nice one. The Select Case statement within VB.Net is very powerful. </p> <p>Sure there is the standard</p> <pre><code>Select Case Role Case "Admin" ''//Do X Case "Tester" ''//Do Y Case "Developer" ''//Do Z Case Else ''//Exception case End Select </code></pre> <p>But there is more...</p> <p>You can do ranges:</p> <pre><code>Select Case Amount Case Is &lt; 0 ''//What!! Case 0 To 15 Shipping = 2.0 Case 16 To 59 Shipping = 5.87 Case Is &gt; 59 Shipping = 12.50 Case Else Shipping = 9.99 End Select </code></pre> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/500642#500642 1 Answer by Parsa for Hidden Features of VB.NET? Parsa 2009-02-01T11:35:24Z 2009-09-19T07:45:46Z <p>It's not possible to Explicitly implement interface members in VB, but it's possible to implement them with a different name.</p> <p><code></p> <pre><code>Interface I1 Sub Foo() Sub TheFoo() End Interface Interface I2 Sub Foo() Sub TheFoo() End Interface Class C Implements I1, I2 Public Sub IAmFoo1() Implements I1.Foo ' Something happens here' End Sub Public Sub IAmFoo2() Implements I2.Foo ' Another thing happens here' End Sub Public Sub TheF() Implements I1.TheFoo, I2.TheFoo ' You shouldn't yell!' End Sub End Class </code></pre> <p></code></p> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/500655#500655 9 Answer by Parsa for Hidden Features of VB.NET? Parsa 2009-02-01T11:45:57Z 2009-11-27T07:58:51Z <p>You can have 2 lines of code in just one line. hence:</p> <pre><code>Dim x As New Something : x.CallAMethod </code></pre> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/500667#500667 4 Answer by Parsa for Hidden Features of VB.NET? Parsa 2009-02-01T11:49:13Z 2009-11-27T08:04:55Z <p>You can have an If in one line.</p> <pre><code>If True Then DoSomething() </code></pre> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/500669#500669 2 Answer by Parsa for Hidden Features of VB.NET? Parsa 2009-02-01T11:50:58Z 2009-06-02T16:08:28Z <p>VB also offers the OnError statement. But it's not much of use these days. <code></p> <pre><code>OnError Resume Next ' Or' OnError GoTo someline </code></pre> <p></code></p> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/500677#500677 21 Answer by Parsa for Hidden Features of VB.NET? Parsa 2009-02-01T11:57:04Z 2009-08-06T20:13:44Z <p>Have you noticed the Like comparison operator? <code></p> <pre><code>Dim b As Boolean = "file.txt" Like "*.txt" </code></pre> <p></code></p> <p>More from <a href="http://msdn.microsoft.com/en-us/library/swf8kaxw.aspx" rel="nofollow">MSDN</a></p> <pre><code>Dim testCheck As Boolean ' The following statement returns True (does "F" satisfy "F"?)' testCheck = "F" Like "F" ' The following statement returns False for Option Compare Binary' ' and True for Option Compare Text (does "F" satisfy "f"?)' testCheck = "F" Like "f" ' The following statement returns False (does "F" satisfy "FFF"?)' testCheck = "F" Like "FFF" ' The following statement returns True (does "aBBBa" have an "a" at the' ' beginning, an "a" at the end, and any number of characters in ' ' between?)' testCheck = "aBBBa" Like "a*a" ' The following statement returns True (does "F" occur in the set of' ' characters from "A" through "Z"?)' testCheck = "F" Like "[A-Z]" ' The following statement returns False (does "F" NOT occur in the ' ' set of characters from "A" through "Z"?)' testCheck = "F" Like "[!A-Z]" ' The following statement returns True (does "a2a" begin and end with' ' an "a" and have any single-digit number in between?)' testCheck = "a2a" Like "a#a" ' The following statement returns True (does "aM5b" begin with an "a",' ' followed by any character from the set "L" through "P", followed' ' by any single-digit number, and end with any character NOT in' ' the character set "c" through "e"?)' testCheck = "aM5b" Like "a[L-P]#[!c-e]" ' The following statement returns True (does "BAT123khg" begin with a' ' "B", followed by any single character, followed by a "T", and end' ' with zero or more characters of any type?)' testCheck = "BAT123khg" Like "B?T*" ' The following statement returns False (does "CAT123khg" begin with' ' a "B", followed by any single character, followed by a "T", and' ' end with zero or more characters of any type?)' testCheck = "CAT123khg" Like "B?T*" </code></pre> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/500686#500686 0 Answer by Parsa for Hidden Features of VB.NET? Parsa 2009-02-01T12:01:19Z 2009-02-01T12:01:19Z <p>Someday Basic users didn't introduce any variable. They introduced them just by using them. VB's Option Explicit was introduced just to make sure you wouldn't introduce any variable mistakenly by bad typing. You can always turn it to Off, experience the days we worked with Basic.</p> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/500690#500690 2 Answer by Parsa for Hidden Features of VB.NET? Parsa 2009-02-01T12:03:53Z 2009-06-09T18:43:31Z <p>In VB8 and the former vesions, if you didn't specify any type for the variable you introduce, the Object type was automaticly detected. In VB9 (2008), the <code>Dim</code> would act like C#'s <code>var</code> keyword if the Option Infer is set to On (which is, by default)</p> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/646188#646188 12 Answer by torial for Hidden Features of VB.NET? torial 2009-03-14T16:22:55Z 2009-03-14T16:22:55Z <p>I just found an article talking about the "!" operator, also know as the "dictionary lookup operator". Here's an excerpt from the article at: <a href="http://panopticoncentral.net/articles/902.aspx" rel="nofollow">http://panopticoncentral.net/articles/902.aspx</a></p> <blockquote> <p>The technical name for the ! operator is the "dictionary lookup operator." A dictionary is any collection type that is indexed by a key rather than a number, just like the way that the entries in an English dictionary are indexed by the word you want the definition of. The most common example of a dictionary type is the System.Collections.Hashtable, which allows you to add (key, value) pairs into the hashtable and then retrieve values using the keys. For example, the following code adds three entries to a hashtable, and looks one of them up using the key "Pork".</p> </blockquote> <pre><code>Dim Table As Hashtable = New Hashtable Table("Orange") = "A fruit" Table("Broccoli") = "A vegetable" Table("Pork") = "A meat" Console.WriteLine(Table("Pork")) </code></pre> <blockquote> <p>The ! operator can be used to look up values from any dictionary type that indexes its values using strings. The identifier after the ! is used as the key in the lookup operation. So the above code could instead have been written:</p> </blockquote> <pre><code>Dim Table As Hashtable = New Hashtable Table!Orange = "A fruit" Table!Broccoli = "A vegetable" Table!Pork = "A meat" Console.WriteLine(Table!Pork) </code></pre> <blockquote> <p>The second example is completely equivalent to the first, but just looks a lot nicer, at least to my eyes. I find that there are a lot of places where ! can be used, especially when it comes to XML and the web, where there are just tons of collections that are indexed by string. One unfortunate limitation is that the thing following the ! still has to be a valid identifier, so if the string you want to use as a key has some invalid identifier character in it, you can't use the ! operator. (You can't, for example, say "Table!AB$CD = 5" because $ isn't legal in identifiers.) In VB6 and before, you could use brackets to escape invalid identifiers (i.e. "Table![AB$CD]"), but when we started using brackets to escape keywords, we lost the ability to do that. In most cases, however, this isn't too much of a limitation.</p> <p>To get really technical, x!y works if x has a default property that takes a String or Object as a parameter. In that case, x!y is changed into x.DefaultProperty("y"). An interesting side note is that there is a special rule in the lexical grammar of the language to make this all work. The ! character is also used as a type character in the language, and type characters are eaten before operators. So without a special rule, x!y would be scanned as "x! y" instead of "x ! y". Fortunately, since there is no place in the language where two identifiers in a row are valid, we just introduced the rule that if the next character after the ! is the start of an identifier, we consider the ! to be an operator and not a type character.</p> </blockquote> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/692685#692685 2 Answer by Parsa for Hidden Features of VB.NET? Parsa 2009-03-28T12:18:41Z 2009-03-28T12:18:41Z <p>MyClass keyword provides a way to refer to the class instance members as originally implemented, ignoring any derived class overrides.</p> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/884441#884441 2 Answer by Clif for Hidden Features of VB.NET? Clif 2009-05-19T18:57:57Z 2009-05-19T18:57:57Z <p>Select Case in place of multiple If/ElseIf/Else statements.</p> <p>Assume simple geometry objects in this example:</p> <pre><code>Function GetToString(obj as SimpleGeomertyClass) as String Select Case True Case TypeOf obj is PointClass Return String.Format("Point: Position = {0}", _ DirectCast(obj,Point).ToString) Case TypeOf obj is LineClass Dim Line = DirectCast(obj,LineClass) Return String.Format("Line: StartPosition = {0}, EndPosition = {1}", _ Line.StartPoint.ToString,Line.EndPoint.ToString) Case TypeOf obj is CircleClass Dim Line = DirectCast(obj,CircleClass) Return String.Format("Circle: CenterPosition = {0}, Radius = {1}", _ Circle.CenterPoint.ToString,Circle.Radius) Case Else Return String.Format("Unhandled Type {0}",TypeName(obj)) End Select End Function </code></pre> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/940097#940097 4 Answer by Joel Coehoorn for Hidden Features of VB.NET? Joel Coehoorn 2009-06-02T15:09:03Z 2009-06-02T16:24:35Z <p><strong>Stack/group multiple using statements together:</strong></p> <pre><code>Dim sql As String = "StoredProcedureName" Using cn As SqlConnection = getOpenConnection(), _ cmd As New SqlCommand(sql, cn), _ rdr As SqlDataReader = cmd.ExecuteReader() While rdr.Read() ''// Do Something End While End Using </code></pre> <p>To be fair, you can do it in C#, too. But a lot of people don't know about this in either language.</p> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/940420#940420 15 Answer by ck for Hidden Features of VB.NET? ck 2009-06-02T16:13:53Z 2009-06-02T16:13:53Z <p>The best and easy CSV parser:</p> <pre><code>Microsoft.VisualBasic.FileIO.TextFieldParser </code></pre> <p>By adding a reference to Microsoft.VisualBasic, this can be used in any other .Net language, e.g. C#</p> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/1027703#1027703 2 Answer by Dan F for Hidden Features of VB.NET? Dan F 2009-06-22T15:02:13Z 2009-06-22T15:02:13Z <p>Similar to <a href="http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/500677#500677">Parsa's</a> answer, the <a href="http://msdn.microsoft.com/en-us/library/swf8kaxw.aspx" rel="nofollow">like operator</a> has <strong>lots</strong> of things it can match on over and above simple wildcards. I nearly fell of my chair when reading the MSDN doco on it :-) </p> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/1058767#1058767 3 Answer by danlash for Hidden Features of VB.NET? danlash 2009-06-29T14:51:37Z 2009-06-29T14:51:37Z <p>DateTime can be initialized by surrounding your date with # </p> <pre><code>Dim independanceDay As DateTime = #7/4/1776# </code></pre> <p>You can also use type inference along with this syntax</p> <pre><code>Dim independanceDay = #7/4/1776# </code></pre> <p>That's a lot nicer than using the constructor</p> <pre><code>Dim independanceDay as DateTime = New DateTime(1776, 7, 4) </code></pre> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/1120271#1120271 6 Answer by Shimmy for Hidden Features of VB.NET? Shimmy 2009-07-13T15:44:40Z 2009-07-13T15:44:40Z <p>In vb there is a different between these operators:</p> <p>/ is double \ is integer ignoring the division</p> <pre><code>Sub Main() Dim x = 9 / 5 Dim y = 9 \ 5 Console.WriteLine("item x of '{0}' equals to {1}", x.GetType.FullName, x) Console.WriteLine("item y of '{0}' equals to {1}", y.GetType.FullName, y) 'Results: 'item x of 'System.Double' equals to 1.8 'item y of 'System.Int32' equals to 1 End Sub </code></pre> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/1120393#1120393 2 Answer by Shimmy for Hidden Features of VB.NET? Shimmy 2009-07-13T16:04:35Z 2009-07-15T12:04:39Z <p>If you never know about the following you really won't believe it's true:</p> <p>(It's called XML literals)</p> <pre><code>Sub Main() Dim xml = &lt;root&gt; &lt;customer id="345"&gt; &lt;name&gt;John&lt;/name&gt; &lt;age&gt;17&lt;/age&gt; &lt;/customer&gt; &lt;customer id="365"&gt; &lt;name&gt;Doe&lt;/name&gt; &lt;age&gt;99&lt;/age&gt; &lt;/customer&gt; &lt;/root&gt; Dim names = xml...&lt;name&gt; For Each name In names Console.WriteLine(name.Value) Next For Each customer In xml.&lt;customer&gt; Console.WriteLine("{0}: {1}", customer.@id, customer.&lt;age&gt;.Value) Next End Sub 'Results: John Doe 345: 17 365: 99 </code></pre> <p>Take a look at <a href="http://blogs.msdn.com/bethmassi/archive/2007/10/26/xml-literals-tips-tricks.aspx" rel="nofollow">XML Literals Tips/Tricks</a> by Beth Massi.</p> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/1120501#1120501 1 Answer by Shimmy for Hidden Features of VB.NET? Shimmy 2009-07-13T16:19:20Z 2009-07-14T09:45:24Z <pre><code>Sub Main() Select Case "value to check" 'Check for multiple items at once:' Case "a", "b", "asdf" Console.WriteLine("Nope...") Case "value to check" Console.WriteLine("Oh yeah! thass what im talkin about!") Case Else Console.WriteLine("Nah :'(") End Select Dim jonny = False Dim charlie = True Dim values = New String() {"asdff", "asdfasdf"} Select Case "asdfasdf" 'You can perform boolean checks that has nothing to do with your var., 'not that I would recommend that, but it exists.' Case values.Contains("ddddddddddddddddddddddd") Case True Case "No sense" Case Else End Select End Sub </code></pre> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/1120520#1120520 0 Answer by Shimmy for Hidden Features of VB.NET? Shimmy 2009-07-13T16:22:48Z 2009-07-13T21:24:29Z <p>Unlike in C#, in VB you can rely on the default values for non-nullable items:</p> <pre><code>Sub Main() 'Auto assigned to def value' Dim i As Integer '0' Dim dt As DateTime '#12:00:00 AM#' Dim a As Date '#12:00:00 AM#' Dim b As Boolean 'False' End Sub </code></pre> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/1120579#1120579 1 Answer by Shimmy for Hidden Features of VB.NET? Shimmy 2009-07-13T16:30:44Z 2009-11-27T06:57:16Z <pre><code>IIf(False, MsgBox("msg1"), MsgBox("msg2")) </code></pre> <p>What is the result? two message boxes!!!! This happens cuz the IIf function evaluates both parameters when reaching the function.</p> <p>VB has a new If operator (just like C# ?: operator):</p> <pre><code>If(False, MsgBox("msg1"), MsgBox("msg2")) </code></pre> <p>Will show only second msgbox.</p> <p>in general I would recommend replacing all the IIFs in you vb code, unless you wanted it to evealueate both items:</p> <pre><code>Dim value = IIf(somthing, LoadAndGetValue1(), LoadAndGetValue2()) </code></pre> <p>you can be sure that both values were loaded.</p> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/1120610#1120610 1 Answer by Shimmy for Hidden Features of VB.NET? Shimmy 2009-07-13T16:34:54Z 2009-11-27T06:58:06Z <p>You can use reserved keyword for properties and variable names if you surround the name with [ and ]</p> <pre><code>Public Class Item Private Value As Integer Public Sub New(ByVal value As Integer) Me.Value = value End Sub Public ReadOnly Property [String]() As String Get Return Value End Get End Property Public ReadOnly Property [Integer]() As Integer Get Return Value End Get End Property Public ReadOnly Property [Boolean]() As Boolean Get Return Value End Get End Property End Class 'Real examples: Public Class PropertyException : Inherits Exception Public Sub New(ByVal [property] As String) Me.Property = [property] End Sub Private m_Property As String Public Property [Property]() As String Get Return m_Property End Get Set(ByVal value As String) m_Property = value End Set End Property End Class Public Enum LoginLevel [Public] = 0 Account = 1 Admin = 2 [Default] = Account End Enum </code></pre> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/1124247#1124247 0 Answer by Shimmy for Hidden Features of VB.NET? Shimmy 2009-07-14T08:57:12Z 2009-07-14T09:43:14Z <pre><code>Private Sub Button1_Click(ByVal sender As Button, ByVal e As System.EventArgs) _ Handles Button1.Click sender.Enabled = True DisableButton(sender) End Sub Private Sub Disable(button As Object) button.Enabled = false End Sub </code></pre> <p>In this snippet you have 2 (maybe more?) things that you could never do in C#:</p> <ol> <li>Handles Button1.Click - attach a handler to the event externally!</li> <li>VB's implicitness allows you to declare the first param of the handler as the expexted type. in C# you cannot address a delegate to a different pattern, even it's the expected type.</li> </ol> <p>Also, in C# you cannot use expected functionality on object - in C# you can dream about it (now they made the dynamic keyword, but it's far away from VB). In C#, if you will write (new object()).Enabled you will get an error that type object doesn't have a method 'Enabled'. Now, I am not the one who will recommend you if this is safe or not, the info is provided AS IS, do on your own, bus still, sometimes (like when working with COM objects) this is such a good thing. I personally always write (sender As Button) when the expected value is surely a button.</p> <p>Actually moreover: take this example:</p> <pre><code>Private Sub control_Click(ByVal sender As Control, ByVal e As System.EventArgs) _ Handles TextBox1.Click, CheckBox1.Click, Button1.Click sender.Text = "Got it?..." End Sub </code></pre> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/1124512#1124512 0 Answer by Shimmy for Hidden Features of VB.NET? Shimmy 2009-07-14T10:12:07Z 2009-07-14T10:12:07Z <p>Differences between <strong>ByVal</strong> and <strong>ByRef</strong> keywords:</p> <pre><code>Module Module1 Sub Main() Dim str1 = "initial" Dim str2 = "initial" DoByVal(str1) DoByRef(str2) Console.WriteLine(str1) Console.WriteLine(str2) End Sub Sub DoByVal(ByVal str As String) str = "value 1" End Sub Sub DoByRef(ByRef str As String) str = "value 2" End Sub End Module 'Results: 'initial 'value 2 </code></pre> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/1207521#1207521 1 Answer by Youssef for Hidden Features of VB.NET? Youssef 2009-07-30T15:50:54Z 2009-07-30T15:50:54Z <p>One of the features I found really useful and helped to solve many bugs is explicitly passing arguments to functions, especially when using optional.</p> <p>Here is an example:</p> <pre><code>Public Function DoSomething(byval x as integer, optional y as boolean=True, optional z as boolean=False) ' ...... End Function </code></pre> <p>then you can call it like this:</p> <pre><code>DoSomething(x:=1, y:=false) DoSomething(x:=2, z:=true) or DoSomething(x:=3,y:=false,z:=true) </code></pre> <p>This is much cleaner and bug free then calling the function like this</p> <pre><code>DoSomething(1,true) </code></pre> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/1296608#1296608 1 Answer by Strilanc for Hidden Features of VB.NET? Strilanc 2009-08-18T21:24:50Z 2009-08-18T21:24:50Z <p>The Nothing keyword can mean default(T) or null, depending on the context. You can exploit this to make a very interesting method:</p> <pre><code>'''&lt;summary&gt;Returns true for reference types, false for struct types.&lt;/summary&gt;' Public Function IsReferenceType(Of T)() As Boolean Return DirectCast(Nothing, T) Is Nothing End Function </code></pre> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/1446195#1446195 0 Answer by Eduardo Molteni for Hidden Features of VB.NET? Eduardo Molteni 2009-09-18T18:31:15Z 2009-09-18T18:31:15Z <h2>Refined Error Handling using When</h2> <p>Notice the use of <code>when</code> in the line <code>Catch ex As IO.FileLoadException When attempt &lt; 3</code></p> <pre><code>Do Dim attempt As Integer Try ''// something that might cause an error. Catch ex As IO.FileLoadException When attempt &lt; 3 If MsgBox("do again?", MsgBoxStyle.YesNo) = MsgBoxResult.No Then Exit Do End If Catch ex As Exception ''// if any other error type occurs or the attempts are too many MsgBox(ex.Message) Exit Do End Try ''// increment the attempt counter. attempt += 1 Loop </code></pre> <p>Recently viewed in <a href="http://www.vbrad.com/article.aspx?id=65" rel="nofollow">VbRad</a></p> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/1612781#1612781 1 Answer by Marcus Andrén for Hidden Features of VB.NET? Marcus Andrén 2009-10-23T11:17:01Z 2009-10-23T11:17:01Z <p>When declaring an array in vb.net always use the "0 to xx" syntax.</p> <pre><code>Dim b(0 to 9) as byte 'Declares an array of 10 bytes </code></pre> <p>It makes it very clear about the span of the array. Compare it with the equivalent</p> <pre><code>Dim b(9) as byte 'Declares another array of 10 bytes </code></pre> <p>Even if you know that the second example consists of 10 elements, it just doesn't feel obvious. And I can't remember the number of times when I have seen code from a programmer who wanted the above but instead wrote</p> <pre><code>Dim b(10) as byte 'Declares another array of 10 bytes </code></pre> <p>This is of course completely wrong. As b(10) creates an array of 11 bytes. And it can easily cause bugs as it looks correct to anyone who doesn't know what to look for.</p> <p>The "0 to xx" syntax also works with the below</p> <pre><code>Dim b As Byte() = New Byte(0 To 9) {} 'Another way to create a 10 byte array ReDim b(0 to 9) 'Assigns a new 10 byte array to b </code></pre> <p>By using the full syntax you will also demonstrate to anyone who reads your code in the future that you knew what you were doing.</p> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/1836103#1836103 1 Answer by Kyralessa for Hidden Features of VB.NET? Kyralessa 2009-12-02T21:56:40Z 2009-12-02T21:56:40Z <p>Here's a funny one that I haven't seen; I know it works in VS 2008, at least:</p> <p><strong>If you accidentally end your VB line with a semicolon</strong>, because you've been doing too much C#, <strong>the semicolon is automatically removed</strong>. It's actually impossible (again, in VS 2008 at least) to accidentally end a VB line with a semicolon. Try it!</p> <p>(It's not perfect; if you type the semicolon halfway through your final class name, it won't autocomplete the class name.)</p> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/1925143#1925143 1 Answer by Kyralessa for Hidden Features of VB.NET? Kyralessa 2009-12-17T22:50:43Z 2009-12-17T22:50:43Z <p>There are a couple of answers about XML Literals, but not about this specific case:</p> <p>You can use XML Literals to enclose string literals that would otherwise need to be escaped. String literals that contain double-quotes, for instance.</p> <p>Instead of this:</p> <pre><code>Dim myString = _ "This string contains ""quotes"" and they're ugly." </code></pre> <p>You can do this:</p> <pre><code>Dim myString = _ &lt;string&gt;This string contains "quotes" and they're nice.&lt;/string&gt;.Value </code></pre> <p>This is especially useful if you're testing a literal for CSV parsing:</p> <pre><code>Dim csvTestYuck = _ """Smith"", ""Bob"", ""123 Anywhere St"", ""Los Angeles"", ""CA""" Dim csvTestMuchBetter = _ &lt;string&gt;"Smith", "Bob", "123 Anywhere St", "Los Angeles", "CA"&lt;/string&gt;.Value </code></pre> <p>(You don't have to use the <code>&lt;string&gt;</code> tag, of course; you can use any tag you like.)</p>