mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 09:41:36 +00:00
[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:
parent
012a4a8e90
commit
1d4bb253fd
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user