venerdì 27 settembre 2013

Ottenere le informazioni dal file di configurazione appsettings

 Il frammento di codice qui di seguito, illustra una tecnica che permette di leggere tutti i valori presenti nel file AppSetting.

Spazio dei nomi:

using System.Configuration;

Codice

NameValueCollection appSettings = ConfigurationManager.AppSettings;
            for (int i = 0; i < appSettings.Count; i++)
            {

               Chiave = appSettings.GetKey(i)
               Valore =  appSettings[i]
  
            }

Nessun commento: