// // // // // $Revision: 2185 $ // #pragma warning disable 1591 using System; namespace Debugger.Wrappers.MetaData { public struct MethodProps { public uint Token; public string Name; public uint ClassToken; public uint Flags; public uint ImplFlags; public uint CodeRVA; public bool IsStatic { get { return (Flags & (uint)CorMethodAttr.mdStatic) != 0; } } public bool IsPublic { get { return (Flags & (uint)CorMethodAttr.mdPublic) != 0; } } public bool HasSpecialName { get { return (Flags & (uint)CorMethodAttr.mdSpecialName) != 0; } } } } #pragma warning restore 1591