Skip to content

Instantly share code, notes, and snippets.

@Mahno74
Last active July 6, 2021 10:39
Show Gist options
  • Save Mahno74/2fc9f5ccf173a0fcbb16335585b533ff to your computer and use it in GitHub Desktop.
Save Mahno74/2fc9f5ccf173a0fcbb16335585b533ff to your computer and use it in GitHub Desktop.
Logger
using System.IO;
private void Log (string eventName) {
using (StreamWriter logger = new StreamWriter(path, true)) {
logger.WriteLine(DateTime.Now.ToLongTimeString() + "-" + eventName);
}
}
//или
private void Log (string eventName) {
using StreamWriter logger = new StreamWriter(path, true); logger.WriteLine(DateTime.Now.ToLongTimeString() + "-" + eventName);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment