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

8 lines
159 B
C#

// objective: C# property initializer
// check: class_class1.xml
class Class1
{
public int Property1 { get; } = 1;
public string Property2 { get; set; }
}