[AttributeUsage(AttributeTargets.Class)]
public class Naming : Attribute
public string DisplayName { get; set; }
Type t = this.GetType();
if (Attribute.IsDefined(t, typeof(Naming)))
Naming myAttrib = (Naming)Attribute.GetCustomAttribute(t, typeof(Naming));
this.Text = "Attribute Example | " + NamingAttrib.DisplayName;