|
Last change
on this file since 710 was 710, checked in by イグトランス (egtra), 17 years ago |
|
IComparableとIComparable<T>で定義が重複しているとエラーになるので、非ジェネリック版IComparableを削除。
|
|
File size:
799 bytes
|
| Line | |
|---|
| 1 | ' Classes/System/misc.ab
|
|---|
| 2 |
|
|---|
| 3 | Namespace System
|
|---|
| 4 |
|
|---|
| 5 | Interface IAsyncResult
|
|---|
| 6 | ' Properties
|
|---|
| 7 | Function AsyncState() As Object
|
|---|
| 8 | Function AsyncWaitHandle() As Threading.WaitHandle
|
|---|
| 9 | Function CompletedSynchronously() As Boolean
|
|---|
| 10 | Function IsCompleted() As Boolean
|
|---|
| 11 | End Interface
|
|---|
| 12 |
|
|---|
| 13 | Interface ICloneable
|
|---|
| 14 | ' Method
|
|---|
| 15 | Function Clone() As Object
|
|---|
| 16 | End Interface
|
|---|
| 17 |
|
|---|
| 18 | Interface IDisposable
|
|---|
| 19 | ' Method
|
|---|
| 20 | Sub Dispose()
|
|---|
| 21 | End Interface
|
|---|
| 22 |
|
|---|
| 23 | Interface IEquatable<T>
|
|---|
| 24 | Function Equals(other As T) As Boolean
|
|---|
| 25 | End Interface
|
|---|
| 26 |
|
|---|
| 27 | Interface IComparable<T>
|
|---|
| 28 | Function CompareTo(other As T) As Long
|
|---|
| 29 | End Interface
|
|---|
| 30 |
|
|---|
| 31 | Class EventArgs
|
|---|
| 32 | Public
|
|---|
| 33 | Static Empty = Nothing As EventArgs
|
|---|
| 34 | End Class
|
|---|
| 35 |
|
|---|
| 36 | Delegate Sub EventHandler(sender As Object, e As EventArgs)
|
|---|
| 37 |
|
|---|
| 38 | Delegate Sub AsyncCallback(ar As IAsyncResult)
|
|---|
| 39 |
|
|---|
| 40 | End Namespace 'System
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.