using System; namespace XP.Scan.Attributes { /// /// 标记 INI Section 名称 | Marks the INI section name /// [AttributeUsage(AttributeTargets.Class)] public class IniSectionAttribute : Attribute { public string SectionName { get; } public IniSectionAttribute(string sectionName) { SectionName = sectionName; } } }