Update InterlockedImpl.cs

This commit is contained in:
MishaTY 2020-11-19 12:28:41 -05:00 committed by GitHub
parent 00724f38a8
commit 04396b75cd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,5 +10,9 @@ namespace Cosmos.Core_Plugs.System.Threading
{
return aData -= 1;
}
public static int Increment(ref int aData)
{
return aData += 1;
}
}
}