We were having the (never ending) underscore prefix versus no underscore prefix debate on member variables and someone mentioned that is you use "this." instead of "-", your code will be slower due to the "." in "this.". Is this true and can anyone quantify this?
|
|
No, that makes no sense at all. Just look at the IL, and kick that developer in the ass. Also FWIW, I like the underscore in member variables. |
|||||||||||||||||||||
|
|
There doesn't seem to be difference when using the this keywords. If you have the following code:
When you run it through reflector you will see the following output:
|
|||
|
|
|
Seems to me that "this." is a disambiguator at compile time. It tells the compiler the scope of the variable. It may be unnecessary, since the compiler will need to figure out scope in any case. But I can't imagine there is any performance downside, perhaps even a microscopic upside as you are "hinting". Once the code is compiled (ie, at runtime), I imagine "this." is utterly irrelevant. So it's a style choice. Some people prefer terseness. I like "this." because it adds clarity, when used correctly. It tells other developers where a function or property lives. I use it for any public method or property. I don't usually use it with private members. Juval Lowy has a very nice C# style guide here: http://www.idesign.net/ |
|||
|
|
|
Variables represent locations in memory. When compiled a 100character variable and a one letter variable are both converted into numbers. In the same way special characters are translated and wont make any difference on the speed. |
|||||
|
|
Who needs underscores when you got camelCasing? Also I got a say that what you doing sounds like a crazy idea. |
|||
|