KeyValueConfigurationCollection コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
KeyValueConfigurationCollection クラスの新しいインスタンスを初期化します。
public:
KeyValueConfigurationCollection();
public KeyValueConfigurationCollection();
Public Sub New ()
例
次のコード例は、 KeyValueConfigurationCollection コンストラクターの使用方法を示しています。 このコード例は、 KeyValueConfigurationCollection クラスの概要に関するより大きな例の一部です。
// Get the KeyValueConfigurationCollection
// from the configuration.
KeyValueConfigurationCollection settings =
config.AppSettings.Settings;
' Get the KeyValueConfigurationCollection
' from the configuration.
Dim settings As KeyValueConfigurationCollection = _
config.AppSettings.Settings()