Toggle navigation
Hot Examples
DE
EN
RU
DE
FR
ES
PT
IT
JP
ZH
KO
C#
PHP
C#
Java
Go
C++
Python
JS
TS
Suchen
Home
cadencii
MemoryManager
C# Class cadencii.MemoryManager
アンマネージドなメモリーの確保・解放を行うマネージャです。
Datei anzeigen
Open project: cadencii/cadencii
Class Usage Examples
Public Methods
Method
Description
dispose
( ) :
void
このマネージャを使って確保されたメモリーのうち、未解放のものを全て解放します
free
(
IntPtr
p
) :
void
メモリを開放します
malloc
(
int
bytes
) :
IntPtr
メモリを確保します
Method Details
dispose()
public
method
このマネージャを使って確保されたメモリーのうち、未解放のものを全て解放します
public
dispose
( ) :
void
return
void
free()
public
method
メモリを開放します
public
free
(
IntPtr
p
) :
void
p
System.IntPtr
return
void
malloc()
public
method
メモリを確保します
public
malloc
(
int
bytes
) :
IntPtr
bytes
int
return
System.IntPtr