Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-xml-014.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6ef31eab04b68b536e9c8b43f46ba36d7a931991 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Compiler options: -doc:xml-014.xml
using System;

namespace Testing
{
	public class Test
	{
		public static void Main ()
		{
		}

		/// <summary>
		/// comment for private property
		/// </summary>
		private string PrivateProperty {
			get { return null; }
			set { }
		}
	}
}