18 lines
347 B
C#
Executable File
18 lines
347 B
C#
Executable File
using System;
|
|
using System.IO;
|
|
|
|
namespace Luski.net;
|
|
|
|
public sealed partial class Server : IDisposable
|
|
{
|
|
~Server()
|
|
{
|
|
try { if (Directory.Exists(Cache)) Directory.Delete(Cache, true); } catch { }
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
try { if (Directory.Exists(Cache)) Directory.Delete(Cache, true); } catch { }
|
|
}
|
|
}
|