diff options
author | Laoujin <woutervs@hotmail.com> | 2015-01-31 20:56:56 +0100 |
---|---|---|
committer | Laoujin <woutervs@hotmail.com> | 2015-01-31 20:56:56 +0100 |
commit | 1d4bb253fd8b6053e5a38d206ffc15360d3bd6fd (patch) | |
tree | 4037cd45a47da221786fecc3fed00ad21342c67e /csharp.html.markdown | |
parent | 012a4a8e901eda4fa89e151f398c67500af8acb9 (diff) |
[CSharp/en]Constants are TitleCase, not SCREAMING_CAPS in C# (as done everywhere in the .NET framework, encouraged by the MS .NET framework guidelines and StackOverflow: http://stackoverflow.com/a/242549/540352)
Diffstat (limited to 'csharp.html.markdown')
-rw-r--r-- | csharp.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/csharp.html.markdown b/csharp.html.markdown index d3738b39..88c2db35 100644 --- a/csharp.html.markdown +++ b/csharp.html.markdown @@ -127,7 +127,7 @@ on a new line! ""Wow!"", the masses cried"; // Use const or read-only to make a variable immutable // const values are calculated at compile time - const int HOURS_I_WORK_PER_WEEK = 9001; + const int HoursWorkPerWeek = 9001; /////////////////////////////////////////////////// // Data Structures |