source: trunk/Include/Classes/System/misc.ab@ 468

Last change on this file since 468 was 468, checked in by イグトランス (egtra), 16 years ago

TextWriter, StreamWriterの追加。
SPrintfの浮動小数点数変換で、NaN, Infiniteの出力に対応。
PathとDirectoryInfoのCreateDirectoryで、対象が既に存在するときには例外を投げないように修正。
SimpleTestCase内で使用する一時フォルダの場所にGetTempPathで取得する版を追加(コメントアウト)。

File size: 720 bytes
Line 
1' Classes/System/misc.ab
2
3Namespace System
4
5Interface IAsyncResult
6 ' Properties
7 Function AsyncState() As Object
8 Function AsyncWaitHandle() As Threading.WaitHandle
9 Function CompletedSynchronously() As Boolean
10 Function IsCompleted() As Boolean
11End Interface
12
13Interface ICloneable
14 ' Method
15 Function Clone() As Object
16End Interface
17
18Interface IComparable
19 ' Method
20 Function CompareTo(obj As Object) As Long
21End Interface
22
23Interface IDisposable
24 ' Method
25 Sub Dispose()
26End Interface
27
28Class EventArgs
29Public
30 Static Empty = New EventArgs
31End Class
32
33Delegate Sub EventHandler(sender As Object, e As EventArgs)
34
35Delegate Sub AsyncCallback(ar As IAsyncResult)
36
37End Namespace 'System
Note: See TracBrowser for help on using the repository browser.