source: trunk/Include/Classes/System/GC.ab@ 435

Last change on this file since 435 was 370, checked in by dai, 16 years ago

System.GCクラスを追加。
64ビットコンパイラで生じる警告を改修した。

File size: 319 bytes
Line 
1Namespace System
2
3
4/*!
5@brief GCを管理するためのクラス
6@author Daisuke Yamamoto
7@date 2007/10/21
8*/
9Class GC
10Public
11
12 /*!
13 @brief 強制的にガベージコレクションを行う
14 @author Daisuke Yamamoto
15 @date 2007/10/21
16 */
17 Static Sub Collect()
18 _System_pGC->Sweep()
19 End Sub
20
21End Class
22
23
24End Namespace
Note: See TracBrowser for help on using the repository browser.