Tagged Questions
0
votes
3answers
549 views
How does compiler optimize virtual methods implemented by a sealed class
I'm wondering how the following code is optimized. Specifically concerning virtual and direct calls. I have commented on how I think everything is optimized but those are just guesses.
public ...
0
votes
7answers
242 views
Question about c# optimizer
If I write:
SomeType simpleName = classWithLongName.otherLongName;
And then use "simpleName" instead of "classWithLongName.otherLongName", will this change the program in any way (for instance ...