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

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

/// <summary>
/// <see cref="AppDomain.AssemblyResolve" />
/// </summary>
public class Whatever {
  /// <summary>
  /// </summary>
  public static void Main() {
	foreach (MemberInfo mi in typeof (AppDomain).FindMembers (
		MemberTypes.All,
		BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Static | BindingFlags.Instance,
		Type.FilterName,
		"AssemblyResolve"))
		Console.WriteLine (mi.GetType ());
  }
}