static void wLog(string msg)
{
try
{
if(!EventLog.SourceExists("Setup"))
{
EventLog.CreateEventSource("Setup", "DevEnne");
}
EventLog myLog = new EventLog();
myLog.Source = "Setup";
myLog.WriteEntry(msg, EventLogEntryType.Information);
}
catch
{
// gestione errori
}
}
Pubblicato in: C-sharp
Iscriviti a:
Commenti sul post (Atom)
0 commenti:
Posta un commento