ConfigurationElementCollection Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the ConfigurationElementCollection class.
Overloads
ConfigurationElementCollection() |
Initializes a new instance of the ConfigurationElementCollection class. |
ConfigurationElementCollection(IComparer) |
Creates a new instance of the ConfigurationElementCollection class. |
ConfigurationElementCollection()
Initializes a new instance of the ConfigurationElementCollection class.
protected:
ConfigurationElementCollection();
protected ConfigurationElementCollection ();
Protected Sub New ()
Remarks
You create a new instance of the ConfigurationElementCollection when your application needs to create a custom ConfigurationElementCollection.
Applies to
ConfigurationElementCollection(IComparer)
Creates a new instance of the ConfigurationElementCollection class.
protected:
ConfigurationElementCollection(System::Collections::IComparer ^ comparer);
protected ConfigurationElementCollection (System.Collections.IComparer comparer);
new System.Configuration.ConfigurationElementCollection : System.Collections.IComparer -> System.Configuration.ConfigurationElementCollection
Protected Sub New (comparer As IComparer)
Parameters
Exceptions
comparer
is null
.
Remarks
The IComparer is used to set a comparer to use. For example, you can use a case-insensitive comparer to make the key case insensitive.