Last change
on this file since 708 was 708, checked in by イグトランス (egtra), 15 years ago |
IEquatable<T>とIComparable<T>の追加
|
File size:
894 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 IComparable
|
---|
19 | ' Method
|
---|
20 | Function CompareTo(obj As Object) As Long
|
---|
21 | End Interface
|
---|
22 |
|
---|
23 | Interface IDisposable
|
---|
24 | ' Method
|
---|
25 | Sub Dispose()
|
---|
26 | End Interface
|
---|
27 |
|
---|
28 | Interface IEquatable<T>
|
---|
29 | Function Equals(other As T) As Boolean
|
---|
30 | End Interface
|
---|
31 |
|
---|
32 | Interface IComparable<T>
|
---|
33 | Function CompareTo(other As T) As Long
|
---|
34 | End Interface
|
---|
35 |
|
---|
36 | Class EventArgs
|
---|
37 | Public
|
---|
38 | Static Empty = Nothing As EventArgs
|
---|
39 | End Class
|
---|
40 |
|
---|
41 | Delegate Sub EventHandler(sender As Object, e As EventArgs)
|
---|
42 |
|
---|
43 | Delegate Sub AsyncCallback(ar As IAsyncResult)
|
---|
44 |
|
---|
45 | End Namespace 'System
|
---|
Note:
See
TracBrowser
for help on using the repository browser.