Tagged Questions
0
votes
2answers
74 views
Does .Net / C#'s speed degrade with increased field depth?
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 ...