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

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

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

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

	}
}