Skip to content

Instantly share code, notes, and snippets.

@kristofzerbe
kristofzerbe / DoSomething.cs
Created June 19, 2022 14:05
Simplest Console File Logger (Files)
public class DoSomething
{
public void Work(string p1)
{
//... doing heavy work
Main.Log("Heavy work done with result", "SUCCESS");
}