System.IO.MemoryMappedFiles.MemoryMappedView.GetSystemPageAllocationGranularity C# (CSharp) Méthode

GetSystemPageAllocationGranularity() private méthode

private GetSystemPageAllocationGranularity ( ) : int
Résultat int
        private static int GetSystemPageAllocationGranularity()
        {
            Interop.Kernel32.SYSTEM_INFO info;
            Interop.Kernel32.GetSystemInfo(out info);

            return (int)info.dwAllocationGranularity;
        }
    }