Is there any execution speed difference between the following two lines of code? I cannot tell from looking at the IL:

int x = MainObject.Field1;
int x = MainObject.Public.Fields.Field1;

I know from Delphi (native code), there is no difference.

link|improve this question

How can you not tell by the IL? Both generate a single, practically identical, IL statement. – qes Oct 13 '10 at 18:34
3  
If those are non-trivial properties, there could be code of arbitrary complexity inside them, so it's not possible to say. If they are all reference-type fields, (simplifying things a bit) each "nested" (non-null) reference must be dereferenced: the object it refers to will be on a different part of the heap. This will have a minor performance cost; in particular, it will not be cache-friendly. Not something likely to make any significant difference in most real-world apps. – Ani Oct 13 '10 at 18:36
2  
@Ani - your comment is a lot more accurate than the marked answer. You ought to post it. – Hans Passant Oct 13 '10 at 18:49
feedback

2 Answers

up vote 1 down vote accepted

Accesing by '.' to deeper class structure elements - NO, but method invocation with it - YES.

link|improve this answer
1  
This question is meaningless in the context of method invocations. – qes Oct 13 '10 at 18:32
Invocations: int x = MainObject.Field1.ToString().Trim().Length; – UGEEN Oct 13 '10 at 18:43
feedback

There is no difference whatsoever. (assuming you mean, as you say in the title, fields)

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.