What's the performance consequence using the 'With' keyword in vb.net instead of using reusing the instance name over and over?
|
feedback
|
|
Assuming that you're comparing it to a local variable reference, there is no difference whatsoever; both will emit the exact same IL. (At least in Release mode) However, if you're comparing it to repeated invocations of a property or indexer, | |||||||
feedback
|
|
There is no runtime performance cost. It is just "syntactic sugar" to make your code look prettier. | |||
|
feedback
|
| ||||
|
feedback
|