Case-sensitive rename operation (2/2)

This commit is contained in:
n00mkrad
2021-08-23 16:50:18 +02:00
parent 2c14fa9515
commit 9433269813
88 changed files with 36439 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
using System;
using System.Diagnostics;
using System.Linq;
namespace Flowframes.MiscUtils
{
class NmkdStopwatch
{
public Stopwatch sw = new Stopwatch();
public NmkdStopwatch (bool startOnCreation = true)
{
if (startOnCreation)
sw.Restart();
}
public string GetElapsedStr ()
{
return FormatUtils.TimeSw(sw);
}
}
}