Emul8.Peripherals.CPU.TranslationCPU.Reallocate C# (CSharp) Метод

Reallocate() приватный Метод

private Reallocate ( IntPtr oldPointer, int newSize ) : IntPtr
oldPointer IntPtr
newSize int
Результат IntPtr
        private IntPtr Reallocate(IntPtr oldPointer, int newSize)
        {
            return memoryManager.Reallocate(oldPointer, newSize);
        }
TranslationCPU