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

test-xml-016.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 13fbe510256efbbb94bfb5ee3aff607122ff7991 (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-016.xml
using System;

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

		/// <summary>
		/// public event EventHandler MyEvent
		/// </summary>
		public event EventHandler MyEvent;

		/// private event EventHandler MyEvent; without markup - it is OK.
		private event EventHandler MyEvent2;
	}
}