diff options
author | Max Yankov <golergka@gmail.com> | 2013-08-17 16:01:08 +0200 |
---|---|---|
committer | Max Yankov <golergka@gmail.com> | 2013-08-17 16:01:08 +0200 |
commit | 541fd3fb06bf6e97974123934ad89cb07a7ef289 (patch) | |
tree | 8eed6757cf26d4d487eb3f85c76daf1e2bfd46bb /csharp.html.markdown | |
parent | 2173dd419a1daa06efee295e3fe2cdbc40224433 (diff) |
C# Coding style: property names start with capitals
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 c9df6db9..490c34bb 100644 --- a/csharp.html.markdown +++ b/csharp.html.markdown @@ -474,7 +474,7 @@ namespace Learning // when only data needs to be accessed, consider using properties. // properties may have either get or set, or both private bool _hasTassles; // private variable - public bool hasTassles // public accessor + public bool HasTassles // public accessor { get { return _hasTassles; } set { _hasTassles = value; } |