Bump to doxygen 1.9.2
[platform/upstream/doxygen.git] / testing / 066_property_initializer.cs
1 // objective: C# property initializer
2 // check: class_class1.xml
3 ///
4 /// Documentation of the class
5 class Class1
6 {
7   public int Property1 { get; } = 1; ///< Documentation of first property
8   public string Property2 { get; set; } ///< Documentation of second property
9 }