System.Configuration.ConfigurationCollectionAttribute.ConfigurationCollectionAttribute C# (CSharp) Method

ConfigurationCollectionAttribute() public method

public ConfigurationCollectionAttribute ( Type itemType ) : System
itemType Type
return System
        public ConfigurationCollectionAttribute(Type itemType) {
            if (itemType == null) {
                throw new ArgumentNullException("itemType");
            }

            _itemType = itemType;
        }
        public Type ItemType {
ConfigurationCollectionAttribute