mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-13 13:44:57 +00:00
13 lines
239 B
C#
13 lines
239 B
C#
using System;
|
|
|
|
namespace SocketIOClient.Extensions
|
|
{
|
|
internal static class DisposableExtensions
|
|
{
|
|
public static void TryDispose(this IDisposable disposable)
|
|
{
|
|
disposable?.Dispose();
|
|
}
|
|
}
|
|
}
|