When I'm programming I usually access the variable directly inside the class for simplicity, unless there is code in one of the property methods that is performing an action. It's likely the compiler resolves away the overhead of a method call, so there probably isn't a difference in performance. In .Net 3.5, you can completely skip the declaration of the variable and just write the property methods, and the compiler will insert the variable for you. Saves an extra line of typing!
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
C# question
Collapse
X
-
The property syntax in .NET is just sugar over a normal method(s) that you would write access the private variable in the class. You could just as well write to methods, GetShowArrows and SetShowArrows to get and set the value, but now we have this language feature that is the convention.Originally posted by toulouse-lautrec View Post
When I'm programming I usually access the variable directly inside the class for simplicity, unless there is code in one of the property methods that is performing an action. It's likely the compiler resolves away the overhead of a method call, so there probably isn't a difference in performance. In .Net 3.5, you can completely skip the declaration of the variable and just write the property methods, and the compiler will insert the variable for you. Saves an extra line of typing!
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
154 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
306 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
244 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
345 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
176 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|


Comment