ConfigurationElementCollection Constructors

Definition

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()

Source:
ConfigurationElementCollection.cs
Source:
ConfigurationElementCollection.cs
Source:
ConfigurationElementCollection.cs

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)

Source:
ConfigurationElementCollection.cs
Source:
ConfigurationElementCollection.cs
Source:
ConfigurationElementCollection.cs

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

comparer
IComparer

The IComparer comparer to use.

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.

Applies to