#region " © Copyright 2005-07 to Marcos Meli - http://www.marcosmeli.com.ar" // Errors, suggestions, contributions, send a mail to: marcos@filehelpers.com. #endregion using System; using System.ComponentModel; namespace FileHelpers { /// Base class of and /// See the Complete Attributes List for more clear info and examples of each one. /// Attributes List /// Quick Start Guide /// Examples of Use [AttributeUsage(AttributeTargets.Field)] [EditorBrowsable(EditorBrowsableState.Never)] public abstract class FieldAttribute : Attribute { /// Abstract class, see the inheritors. protected FieldAttribute() { } } }