using System; namespace Vanara.PInvoke { /// Associates a string with an element. /// [AttributeUsage(AttributeTargets.Class | AttributeTargets.Delegate | AttributeTargets.Enum | AttributeTargets.Event | AttributeTargets.Field | AttributeTargets.Interface | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Struct, AllowMultiple = true, Inherited = false)] public class AssociateStringAttribute : Attribute { /// Initializes a new instance of the class. /// A string value. public AssociateStringAttribute(string value) => Value = value; /// Gets or sets the GUID associated with this element. /// A GUID value. public string Value { get; } } }