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

MissingNestedType.cs « corcompare « tools « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a2bc3417005a1270b10f6151459aea5ca7b64f4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Mono.Util.CorCompare.MissingNestedType
//
// Author(s):
//   Nick Drochak (ndrochak@gol.com)
//
// (C) 2001-2002 Nick Drochak

using System;
using System.Reflection;

namespace Mono.Util.CorCompare {

	/// <summary>
	/// 	Represents a class event that is completely missing
	/// </summary>
	/// <remarks>
	/// 	created by - Nick
	/// 	created on - 2/24/2002 10:43:57 PM
	/// </remarks>
	class MissingNestedType : MissingMember {
		// e.g. <method name="Equals" status="missing"/>
		public MissingNestedType (MemberInfo infoMono, MemberInfo infoMS) : base (infoMono, infoMS) {}

		public override string Type {
			get {
				return "nestedType";
			}
		}

		public override string Name 
		{
			get { return Info.DeclaringType.Name + "+" + Info.Name; }
		}

	}
}