System.Configuration.ConfigurationCollectionAttribute.ConfigurationCollectionAttribute C# (CSharp) Метод

ConfigurationCollectionAttribute() публичный Метод

public ConfigurationCollectionAttribute ( Type itemType ) : System
itemType Type
Результат System
        public ConfigurationCollectionAttribute(Type itemType) {
            if (itemType == null) {
                throw new ArgumentNullException("itemType");
            }

            _itemType = itemType;
        }
        public Type ItemType {
ConfigurationCollectionAttribute