2025-04-15 12:10:19 +02:00

24 lines
577 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using System.Configuration;
namespace GestorePDF
{
/// <summary>
///
/// </summary>
public class UtilityManager
{
public static string getAppSetting(string chiave) {
string valore = "" + ConfigurationManager.AppSettings[chiave];
if (valore != string.Empty)
return valore;
else
throw new Exception("Nel file di configurazione non è presente la chiave: " + chiave);
return "";
}
}
}