Is there any difference regarding performance of private, protected, public and internal methods in C# class? I'm interested if one consumes more processor time or RAM.

link|improve this question

2  
microptimisation anyone? – Mitch Wheat Sep 12 '11 at 8:16
Probably not, but there is a improvement (memory, I think) with sealed classes. – Jonathan Dickinson Sep 12 '11 at 8:18
What about private static (as opposed to non-static) methods? – Richard Ev Sep 12 '11 at 8:20
1  
@Jonathan Dickinson: I'd expect it to be a potential virtual member optimization, where the JIT compiler knows that even a virtual method isn't going to be overridden any further. – Jon Skeet Sep 12 '11 at 8:21
@Jon there is a obfuscator that claims improved speed/memory, and its primary method of achieving that is sealing non-inherited internal classes (because it knows they can 'never' be subclassed) - I am not sure of the JIT specifics though. – Jonathan Dickinson Sep 12 '11 at 8:26
show 3 more comments
feedback

2 Answers

up vote 3 down vote accepted

I'm not aware of any performance difference for normal invocation; it's possible that more restricted access will take a little more work when accessing via dynamic invocation or reflection as the caller may need to be validated more carefully. In the normal JIT-compiled case the access can be validated by the CLR just once and then taken for granted. I guess it's possible that the JIT compilation (and IL verification) itself could be slightly slower for more restrictive access - but I find it hard to believe it would be significant.

This should absolutely not be a factor in determining which accessibility to use, even if somehow there is some tiny performance difference I'm unaware of. If you believe you may be able to achieve a performance benefit by making the accessibility something other than the "natural" one for your design, you should definitely benchmark the before/after case - I suspect you'll be hard-pressed to find a real-world situation where the difference is reliably measurable.

The same sort of advice goes for all kinds of micro-optimization: it's almost never a good idea anyway, and should definitely only be undertaken within careful measuring.

link|improve this answer
I'm surprised that you weren't more unequivocal. Having said that, I was in the process of elaborating on "No". – harpo Sep 12 '11 at 8:16
1  
wouldn't private methods perhaps be optimized (inlined, e.g.) more aggressively by the JIT engine? – sehe Sep 12 '11 at 8:16
@sehe: Why would you think that? Even if a method is public, it can't change after JIT compilation... – Jon Skeet Sep 12 '11 at 8:18
@sehe - I don't think so. It's cross-ngen boundary or not, so if you call a public method from the same assembly it will get inlined just as agressively as a private one; the only way to get cross-ngen-boundary inlining is with TargettedPatchingOptOutAttribute. – Jonathan Dickinson Sep 12 '11 at 8:20
@Jon: well, I wasn't thinking of modification (urgh?) but rather pragmatism: as soon as the compiler knows a method should be externally available, it might decide not to inline it at all in the interest of reducing code size? I was simply contemplating this, hoping you had a ready answer :) – sehe Sep 12 '11 at 8:23
show 4 more comments
feedback

There will be no measurable difference in performance between private, protected or public methods.

If you focus on optimization, possibly you should try making your bottleneck piece of code more "procedural" than object-oriented. It would do small improvement.

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.