In this question, a user commented to never use the With block in VB. Why?
|
"Never" is a strong word. I think it fine as long as you don't abuse it (like nesting) IMHO - this is better:
Than:
|
|||||||||
|
|
There is nothing wrong about the With keyword. It's true that it may reduce readibility when nested but the solution is simply don't use nested With. |
|||
|
|
|
It's just not helpful compared to other options. If you really miss it you can create a one or two character alias for your object instead. The alias only takes one line to setup, rather than two for the With block (With + End With lines). The alias also gives you a quick mouse-over reference for the type of the variable. It provides a hook for the IDE to help you jump back to the top of the block if you want (though if the block is that large you have other problems). It can be passed as an argument to functions. And you can use it to reference an index property. So we have an alternative that gives more function with less code. Also see this question: |
||||
|
|
The with keyword is only sideswiped in a passing reference here in an hilarious article by the wonderful Verity Stob, but it's worth it for the vitriol: See the paragraph that starts While we are on identifier confusion. The with keyword... Worth reading the entire article! |
|||
|
|
|
The With keyword also provides another benefit - the object(s) in the With statement only need to be "qualified" once, which can improve performance. Check out the information on MSDN here: http://msdn.microsoft.com/en-us/library/wc500chb(VS.80).aspx So by all means, use it. |
|||
|
|