Skip to content

Commit

Permalink
Allow for external API consumption
Browse files Browse the repository at this point in the history
  • Loading branch information
bbepis committed Sep 18, 2020
1 parent 2adfecb commit 7c556e0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions AssemblyUnhollower/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,20 @@

namespace AssemblyUnhollower
{
class Program
public class Program
{
private struct TimingCookie : IDisposable
{
private Stopwatch myStopwatch;
public TimingCookie(string message)
{
Console.Write(message + "... ");
LogSupport.Info(message + "... ");
myStopwatch = Stopwatch.StartNew();
}

public void Dispose()
{
Console.WriteLine($"Done in {myStopwatch.Elapsed}");
LogSupport.Info($"Done in {myStopwatch.Elapsed}");
}
}

Expand Down

0 comments on commit 7c556e0

Please sign in to comment.