// dnlib: See LICENSE.txt for more info using System; namespace dnlib.DotNet.MD { /// /// Storage flags found in the MD header /// [Flags] public enum StorageFlags : byte { /// /// Normal flags /// Normal = 0, /// /// More data after the header but before the streams. /// /// The CLR will fail to load the file if this flag (or any other bits) is set. ExtraData = 1, } }