System.SharedStatics.AddMemoryFailPointReservation C# (CSharp) Méthode

AddMemoryFailPointReservation() private méthode

private AddMemoryFailPointReservation ( long size ) : long
size long
Résultat long
        internal static long AddMemoryFailPointReservation(long size)
        {
            // Size can legitimately be negative - see Dispose.
            return Interlocked.Add(ref _sharedStatics._memFailPointReservedMemory, (long) size);
        }