From 1d4bb253fd8b6053e5a38d206ffc15360d3bd6fd Mon Sep 17 00:00:00 2001 From: Laoujin Date: Sat, 31 Jan 2015 20:56:56 +0100 Subject: [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) --- csharp.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'csharp.html.markdown') 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 -- cgit v1.2.3