System.Runtime.MemoryFailPoint.MemoryFailPointState.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : String
return String
            public override String ToString()
            {
                return String.Format(System.Globalization.CultureInfo.InvariantCulture, "MemoryGate: Checking for {0} MB, for allocation size of {1} MB.  Need page file? {2}  Need Address Space? {3}  Need Contiguous address space? {4}  Avail page file: {5} MB  Total free VA space: {6} MB  Contiguous free address space (found): {7} MB  Reserved space: {8} MB",
                    _segmentSize >> 20, _allocationSizeInMB, _needPageFile, 
                    _needAddressSpace, _needContiguousVASpace, 
                    _availPageFile >> 20, _totalFreeAddressSpace >> 20, 
                    _lastKnownFreeAddressSpace >> 20, _reservedMem);
            }
        }
MemoryFailPoint.MemoryFailPointState