Guest IfEndIf Posted September 27, 2002 Posted September 27, 2002 Has anyone had any problems using Option Strict? By default a project allows implicit narrowing conversions, in other words,permissive type semantics. If you change this default to strict type semantics, all narrowing conversions must be done explicity. Quote
*Gurus* divil Posted September 27, 2002 *Gurus* Posted September 27, 2002 No problems whatsoever. I always use Option Strict, as should everyone. Quote MVP, Visual Developer - .NET Now you see why evil will always triumph - because good is dumb. My free .NET Windows Forms Controls and Articles
*Gurus* Derek Stone Posted September 28, 2002 *Gurus* Posted September 28, 2002 This isn't a problem. This is good coding practice. Quote Posting Guidelines
Moderators Robby Posted September 29, 2002 Moderators Posted September 29, 2002 A lot of the errors you may get using Option Strict is implicit casting, so just make all your catsing explicit. (and you're halfway there) Quote Visit...Bassic Software
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.