// 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 { /// /// Represents a class event that is completely missing /// /// /// created by - Nick /// created on - 2/24/2002 10:43:57 PM /// class MissingNestedType : MissingMember { // e.g. 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; } } } }