${StandardHeader.C#} using System; using System.Configuration; namespace ${StandardNamespace} { /// /// Configuration settings for ${ClassName}. /// public class ${ClassName}Section : ConfigurationSection { /// /// Collection of ${ClassName}Element(s) /// [ConfigurationProperty("customSection", IsDefaultCollection = true)] public ${ClassName}Collection ${ClassName} { get { return (${ClassName}Collection) base["customSection"]; } } } }