mirror of
https://github.com/yaakov-h/Notepad.Extensions.Logging.git
synced 2025-04-18 18:25:12 +00:00
13 lines
No EOL
236 B
C#
13 lines
No EOL
236 B
C#
using System;
|
|
|
|
namespace Notepad.Extensions.Logging
|
|
{
|
|
class NullDisposable : IDisposable
|
|
{
|
|
public static IDisposable Instance { get; } = new NullDisposable();
|
|
|
|
public void Dispose()
|
|
{
|
|
}
|
|
}
|
|
} |