Un esempio di come scrivere nel log degli eventi di windows in C#

C#

static void wLog(string msg)
{
	try 
	{
		if(!EventLog.SourceExists("Setup"))
		{
			EventLog.CreateEventSource("Setup", "Sgart.it");
		}
		EventLog myLog = new EventLog();
		myLog.Source = "Setup";
		
		myLog.WriteEntry(msg, EventLogEntryType.Information);
	}
	catch
	{
		// gestione errori
	}
}
Tags:
C#236 Esempi225 Windows73
Potrebbe interessarti anche: