summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMax Yankov <golergka@gmail.com>2013-08-17 16:01:08 +0200
committerMax Yankov <golergka@gmail.com>2013-08-17 16:01:08 +0200
commit541fd3fb06bf6e97974123934ad89cb07a7ef289 (patch)
tree8eed6757cf26d4d487eb3f85c76daf1e2bfd46bb
parent2173dd419a1daa06efee295e3fe2cdbc40224433 (diff)
C# Coding style: property names start with capitals
-rw-r--r--csharp.html.markdown2
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; }