1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 19:48:20 +02:00

Dispose fix

This commit is contained in:
Brian Fiete 2020-02-17 06:58:28 -08:00
parent 179e67194d
commit a4d9d5a52f
2 changed files with 2 additions and 2 deletions

View file

@ -5,7 +5,7 @@ namespace System.Threading
{
public class Monitor
{
public struct MonitorLockInstance
public struct MonitorLockInstance : IDisposable
{
public Monitor mMonitor;
public void Dispose()

View file

@ -26,7 +26,7 @@ namespace System.Threading
public class Monitor
{
public struct MonitorLockInstance
public struct MonitorLockInstance : IDisposable
{
public Monitor mMonitor;
public void Dispose()