doxygen/tests/upstream-test-suite/066_property_initializer.cs

8 lines
159 B
C#
Raw Normal View History

2019-03-06 17:39:53 +00:00
// objective: C# property initializer
// check: class_class1.xml
class Class1
{
public int Property1 { get; } = 1;
public string Property2 { get; set; }
}