What's the performance consequence using the 'With' keyword in vb.net instead of using reusing the instance name over and over?

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

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, With will be a little bit faster, and if you're comparing it to repeated invocations of a method, it might be much faster. (The With keyword will create a local variable and assign it to the object that you With'd, so the method will only be called once instead of on every line)

link|improve this answer
1  
+1. Although I'd say you should only worry about these performance differences if you've measured and found a serious performance bottleneck in a specific block of code that uses With. "Premature micro-optimization is the root of all evil" – MarkJ Jan 13 '10 at 13:21
@MarkJ I'm talking about a huge batch operation (1000000+) entries – Shimmy Oct 13 '11 at 18:06
feedback

There is no runtime performance cost. It is just "syntactic sugar" to make your code look prettier.

link|improve this answer
feedback
sub xyz (ByRef param as MyObj)

'Local ref, same as with

dim o2 as YourObject = param.YourObject

o2.callSomething()


'Bad performance

param.YourObject.callSomething()

end sub
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.