Option Strict On and .NET for VB6 programmers - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T15:35:08Z http://stackoverflow.com/feeds/question/222370 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/222370/option-strict-on-and-net-for-vb6-programmers 11 Option Strict On and .NET for VB6 programmers Enrico Campidoglio 2008-10-21T15:51:44Z 2009-06-09T14:22:18Z <p>Hi,</p> <p>I'm preparing a class on Visual Basic 2005 targeting Visual Basic 6 programmers migrating to the .NET platform.<br /><br/> I would like a word of advice about whether to recommend them to always enable <strong>Option Strict</strong> or not.<br /><br/> I've worked exclusively with C-style programming languages, mostly Java and C#, so for me <strong>explicit casting</strong> is something I always expect I have to do, since it's never been an option.<br/>However I recognize the value of working with a language that has built-in support for <strong>late-binding</strong>, because not having to be excessively explicit about types in the code indeed saves time. This is further proved by the popular diffusion of <strong>dynamic typed languages</strong>, even on the .NET platform with the Dynamic Language Runtime. <br><br/> With this in mind, should someone who is approaching .NET for the first time using VB.NET and with a VB6 background be encouraged to get into the mindset of <strong>having to work with compile-time type checking</strong> because that's the "best practice" in the CLR? Or is it "OK" to continue enjoying the benefits of late-binding?</p> http://stackoverflow.com/questions/222370/option-strict-on-and-net-for-vb6-programmers/222381#222381 12 Answer by Ilya Kochetov for Option Strict On and .NET for VB6 programmers Ilya Kochetov 2008-10-21T15:54:41Z 2008-10-21T15:54:41Z <p>Time spent developing with Option Strict enable will save you tremendous amount of debugging time later on.</p> http://stackoverflow.com/questions/222370/option-strict-on-and-net-for-vb6-programmers/222389#222389 5 Answer by Mitchel Sellers for Option Strict On and .NET for VB6 programmers Mitchel Sellers 2008-10-21T15:56:04Z 2008-10-21T15:56:04Z <p>YES!!!!</p> <p>In my opinion, both as a developer, and as a college instructor YES.</p> <p>It is best to get into the good habits from the start, it makes the whole process much easier, and Option Strict is one of those items that in my opinion is a NEEDED element.</p> <p><em>added</em></p> <p>There are literally tons of reasons that could be listed as to why, but the key is that it is a best practice, and when teaching a new language, it is key to teach those best practices from the start.</p> http://stackoverflow.com/questions/222370/option-strict-on-and-net-for-vb6-programmers/222394#222394 0 Answer by Kibbee for Option Strict On and .NET for VB6 programmers Kibbee 2008-10-21T15:57:05Z 2008-10-21T15:57:05Z <p>If you're used to having your types checked, then you probably want option strict on. turning it off can have advantages, but if your brain isn't tuned to spotting errors where your compiler would usually complain, then I would say to leave it on. I've worked in VB.Net a lot, and I have to say, that even though I work with options strict turned off most of the time, I've seen plenty of situations where having it turned on would have prevented quite a few bugs.</p> http://stackoverflow.com/questions/222370/option-strict-on-and-net-for-vb6-programmers/222430#222430 0 Answer by Enrico Campidoglio for Option Strict On and .NET for VB6 programmers Enrico Campidoglio 2008-10-21T16:04:28Z 2008-10-21T16:04:28Z <p>I agree with all of your answers. But by looking at how dynamic languages have become increasingly popular, I wonder whether the risk of removing the compile-time type checking can be mitigated by making good use of testing practices, like Unit Testing.<br/><br/> However my primary concern is to teach the best practices when developing on the CLR. Is Option Strict On a best practice in .NET? If so, why did Microsoft choose to disable it by default in Visual Studio?</p> http://stackoverflow.com/questions/222370/option-strict-on-and-net-for-vb6-programmers/222458#222458 6 Answer by Konrad Rudolph for Option Strict On and .NET for VB6 programmers Konrad Rudolph 2008-10-21T16:11:29Z 2008-10-21T16:16:54Z <p><code>Option Strict</code> obviously can't replace good unit testing – but neither the other way round. While unit testing <em>can</em> detect the same errors as <code>Option Strict</code>, this implies that there's no error in the unit tests, that unit testing is done often and early, etc ….</p> <p>Writing good unit tests isn't always trivial and takes time. However, the compiler already implements some of the tests – in the form of type checking. At the very least, this saves time. More likely, this saves <em>a lot of</em> time and money (at least occasionally) because your tests were erroneous / didn't cover all cases / forgot to account for changes in the code.</p> <p>To sum it up, there's no guarantee that your unit tests are correct. On the other hand, there's a strong guarantee that the type checking performed by the compiler is correct or at least that its glitches (unchecked array covariance, bugs with circular references …) are well-known and well-documented.</p> <p>Another sum-up: <strong>Yes, <code>Option Strict On</code> is definitely best practice.</strong> In fact, I've worked for years in online communities like this one. Whenever someone needed help on code that obviously didn't have <code>Option Strict</code> enabled, we'd politely point this out and refuse to give any further help until this was fixed. It saves so much time. Often, the problem was gone after this. This is somewhat analogous to using correct HTML when asking help in a HTML support forum: invalid HTML might work, but then again, it might not and be the cause of the problems. Therefore, many professionals refuse to help.</p> http://stackoverflow.com/questions/222370/option-strict-on-and-net-for-vb6-programmers/222478#222478 11 Answer by Joel Coehoorn for Option Strict On and .NET for VB6 programmers Joel Coehoorn 2008-10-21T16:16:56Z 2008-10-21T18:40:44Z <p>Yes! Option Strict is definitely a best practice with .Net. Emphasize that .Net is at it's core a strongly typed platform, and will be until the DLR is more completely supported. With few exceptions, every <code>Dim</code> and <code>Function</code> should have an explicit type declared to go with it. Things like LINQ or Boo and JScript are the exceptions that prove the rule.</p> <p>Here are some other things to point out. I'm sure you're well aware of all this, but I've had to work with and maintain a lot of VB.Net code written by former VB6ers, and so this is something of a sore spot for me:</p> <ul> <li>Don't use the old string functions: LEN(), REPLACE(), TRIM(), etc</li> <li>Hungarian warts are no longer recommended. <code>oMyObject</code> and <code>sMyString</code> are not kosher. Show them the reference in <a href="http://msdn.microsoft.com/en-us/library/ms229042.aspx" rel="nofollow">Microsoft's style guidelines</a> if they don't believe you.</li> <li>Make sure they learn about the new AndAlso/OrElse logical operators</li> <li>PARAMETERIZED QUERIES and modern ADO.Net. Can't emphasize that enough. They should never need to call CreateObject() again.</li> <li>Scope works differently (and is more important) in .Net than it was in VB6. VB.Net still has modules, but they're now more analogous to a static class. It's important to understand how developing in a real object oriented environment be different, as opposed to the partial OOP support provided by VB6. There's no good reason anymore to allow methods to run to ungodly lengths.</li> <li>Make sure they get an introduction to Generics and Interfaces (including IEnumeralbe(Of T) ), and learn why they should never use an ArrayList again.</li> </ul> <p>I could keep going, but I'll just point you to the <a href="http://stackoverflow.com/questions/102084/hidden-features-of-vbnet">Hidden Features of VB.Net</a> Question to close out this rant.</p> http://stackoverflow.com/questions/222370/option-strict-on-and-net-for-vb6-programmers/222693#222693 4 Answer by RS Conley for Option Strict On and .NET for VB6 programmers RS Conley 2008-10-21T17:14:41Z 2008-10-21T17:14:41Z <p>Remember there are two levels here.</p> <p>Option Explicit Option Strict</p> <p>The main difference between the two is that Option Strict disable VB's automatic conversion of different data types. You have to explicitly use CType or another data conversion function to assign a variable to another type.</p> <p>I been using VB since 1.0 and while I can see the point of this I think that Strict is over zealous paritcularily when dealing with Objects that have implemented or inherited different interfaces and classes.</p> <p>I would start with Strict at first and if it starts getting in your way then drop down to Explicit. But don't ever both turn off, that way lies madness and excessive debugging time.</p> <p>Over the years with VB I pretty much use Double for all floating point variables. This way you avoid many problems with rounding and loss of accuracy. In VB6 I used long as it was a 32-bit integer, but Integer work just as well in .NET as it is a Int32. I also recommend using Int32, Int16, etc instead of Integer,Long, etc in case Microsoft ever decides to redefine those keywords.</p> http://stackoverflow.com/questions/222370/option-strict-on-and-net-for-vb6-programmers/969317#969317 1 Answer by MarkJ for Option Strict On and .NET for VB6 programmers MarkJ 2009-06-09T10:43:31Z 2009-06-09T14:22:18Z <p>I'm going to disagree with <a href="http://stackoverflow.com/questions/222370/option-strict-on-and-net-for-vb6-programmers/222693#222693">RS Conley</a> (very unusual). My favourite VB6 gurus - Francesco Balena, Dan Appleman - all disliked VB6's automatic conversion, and are <a href="http://www.amazon.com/Exploring-Net-1-Dan-Appleman/dp/B00008I9N4" rel="nofollow">in</a> <a href="http://rads.stackoverflow.com/amzn/click/0735621721" rel="nofollow">favour</a> of <code>Option Strict</code> in .NET. Many experienced VB6 programmers know automatic conversion as "evil type coercion" (<a href="http://vb.mvps.org/articles/pt199511.pdf" rel="nofollow">pdf</a>), and will be delighted to switch on <code>Option Strict</code>. </p> <p>It's occasionally better to use one small module without <code>Option Strict</code>, to avoid lots of complicated reflection code. But that's the exception that proves the rule. </p>