diff options
Diffstat (limited to 'testing/066_property_initializer.cs')
-rw-r--r-- | testing/066_property_initializer.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/testing/066_property_initializer.cs b/testing/066_property_initializer.cs index d5b5c59..57aeb5b 100644 --- a/testing/066_property_initializer.cs +++ b/testing/066_property_initializer.cs @@ -1,7 +1,9 @@ // objective: C# property initializer // check: class_class1.xml +/// +/// Documentation of the class class Class1 { - public int Property1 { get; } = 1; - public string Property2 { get; set; } + public int Property1 { get; } = 1; ///< Documentation of first property + public string Property2 { get; set; } ///< Documentation of second property } |