C# Class cadencii.MemoryManager

アンマネージドなメモリーの確保・解放を行うマネージャです。
Afficher le fichier Open project: cadencii/cadencii Class Usage Examples

Méthodes publiques

Méthode Description
dispose ( ) : void

このマネージャを使って確保されたメモリーのうち、未解放のものを全て解放します

free ( IntPtr p ) : void

メモリを開放します

malloc ( int bytes ) : IntPtr

メモリを確保します

Method Details

dispose() public méthode

このマネージャを使って確保されたメモリーのうち、未解放のものを全て解放します
public dispose ( ) : void
Résultat void

free() public méthode

メモリを開放します
public free ( IntPtr p ) : void
p System.IntPtr
Résultat void

malloc() public méthode

メモリを確保します
public malloc ( int bytes ) : IntPtr
bytes int
Résultat System.IntPtr