Last change
on this file since 471 was 468, checked in by イグトランス (egtra), 17 years ago |
TextWriter, StreamWriterの追加。
SPrintfの浮動小数点数変換で、NaN, Infiniteの出力に対応。
PathとDirectoryInfoのCreateDirectoryで、対象が既に存在するときには例外を投げないように修正。
SimpleTestCase内で使用する一時フォルダの場所にGetTempPathで取得する版を追加(コメントアウト)。
|
File size:
720 bytes
|
Rev | Line | |
---|
[77] | 1 | ' Classes/System/misc.ab
|
---|
| 2 |
|
---|
[261] | 3 | Namespace System
|
---|
[77] | 4 |
|
---|
| 5 | Interface IAsyncResult
|
---|
| 6 | ' Properties
|
---|
[261] | 7 | Function AsyncState() As Object
|
---|
[391] | 8 | Function AsyncWaitHandle() As Threading.WaitHandle
|
---|
[261] | 9 | Function CompletedSynchronously() As Boolean
|
---|
| 10 | Function IsCompleted() As Boolean
|
---|
[77] | 11 | End Interface
|
---|
| 12 |
|
---|
[400] | 13 | Interface ICloneable
|
---|
[77] | 14 | ' Method
|
---|
[261] | 15 | Function Clone() As Object
|
---|
[77] | 16 | End Interface
|
---|
| 17 |
|
---|
| 18 | Interface IComparable
|
---|
| 19 | ' Method
|
---|
[261] | 20 | Function CompareTo(obj As Object) As Long
|
---|
[77] | 21 | End Interface
|
---|
| 22 |
|
---|
[261] | 23 | Interface IDisposable
|
---|
| 24 | ' Method
|
---|
| 25 | Sub Dispose()
|
---|
| 26 | End Interface
|
---|
| 27 |
|
---|
[77] | 28 | Class EventArgs
|
---|
[223] | 29 | Public
|
---|
| 30 | Static Empty = New EventArgs
|
---|
[77] | 31 | End Class
|
---|
| 32 |
|
---|
[468] | 33 | Delegate Sub EventHandler(sender As Object, e As EventArgs)
|
---|
| 34 |
|
---|
[467] | 35 | Delegate Sub AsyncCallback(ar As IAsyncResult)
|
---|
[391] | 36 |
|
---|
[261] | 37 | End Namespace 'System
|
---|
Note:
See
TracBrowser
for help on using the repository browser.