summaryrefslogtreecommitdiffhomepage
path: root/csharp.html.markdown
diff options
context:
space:
mode:
authorLaoujin <woutervs@hotmail.com>2015-01-31 20:56:56 +0100
committerLaoujin <woutervs@hotmail.com>2015-01-31 20:56:56 +0100
commit1d4bb253fd8b6053e5a38d206ffc15360d3bd6fd (patch)
tree4037cd45a47da221786fecc3fed00ad21342c67e /csharp.html.markdown
parent012a4a8e901eda4fa89e151f398c67500af8acb9 (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.markdown2
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