System.Runtime.MemoryFailPoint.MemoryFailPoint C# (CSharp) Méthode

MemoryFailPoint() private méthode

private MemoryFailPoint ( int sizeInMegabytes ) : System
sizeInMegabytes int
Résultat System
        public MemoryFailPoint(int sizeInMegabytes)
        {
            if (sizeInMegabytes <= 0)
                throw new ArgumentOutOfRangeException("sizeInMegabytes", Environment.GetResourceString("ArgumentOutOfRange_NeedNonNegNum"));

            ulong size = ((ulong)sizeInMegabytes) << 20;
            _reservedMemory = size;
            // Allow the fail point to succeed, unless we have a 
            // platform-independent way of checking the amount of free memory.
            // We could allocate a byte[] then discard it, but we don't want
            // to generate garbage like that.
        }

Same methods

MemoryFailPoint::MemoryFailPoint ( ) : System