[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)

This commit is contained in:
Laoujin 2015-01-31 20:56:56 +01:00
parent 012a4a8e90
commit 1d4bb253fd

View File

@ -127,7 +127,7 @@ on a new line! ""Wow!"", the masses cried";
// Use const or read-only to make a variable immutable // Use const or read-only to make a variable immutable
// const values are calculated at compile time // const values are calculated at compile time
const int HOURS_I_WORK_PER_WEEK = 9001; const int HoursWorkPerWeek = 9001;
/////////////////////////////////////////////////// ///////////////////////////////////////////////////
// Data Structures // Data Structures