Possible Duplicate:
Best Practices: Option Infer
What is the best way to mix VB.NET's Option Strict and the new Option Infer directives?
I am developing a old solution, that was translated from VB6 to the VB.NET.
Actually, the default options in files are
Option Strict On
Option Explicit On
I want to use LINQ, and found that is easier to use also the Option Infer On
.
Less to write, less (so, easier) to read.
However, a (conservative, from my point of view) part of the team keeps the Option Infer Off and insist do not use it at all, without explicitly explain the causes.
In your opinion, what are the "dangers" of using Option Infer On, along with other two options (Strict and Explicit, both On)?