source: trunk/ab5.0/ablib/src/Classes/System/misc.ab@ 708

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

IEquatable<T>とIComparable<T>の追加

File size: 894 bytes
RevLine 
[77]1' Classes/System/misc.ab
2
[261]3Namespace System
[77]4
5Interface 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]11End Interface
12
[400]13Interface ICloneable
[77]14 ' Method
[261]15 Function Clone() As Object
[77]16End Interface
17
18Interface IComparable
19 ' Method
[261]20 Function CompareTo(obj As Object) As Long
[77]21End Interface
22
[261]23Interface IDisposable
24 ' Method
25 Sub Dispose()
26End Interface
27
[708]28Interface IEquatable<T>
29 Function Equals(other As T) As Boolean
30End Interface
31
32Interface IComparable<T>
33 Function CompareTo(other As T) As Long
34End Interface
35
[77]36Class EventArgs
[223]37Public
[559]38 Static Empty = Nothing As EventArgs
[77]39End Class
40
[468]41Delegate Sub EventHandler(sender As Object, e As EventArgs)
42
[467]43Delegate Sub AsyncCallback(ar As IAsyncResult)
[391]44
[261]45End Namespace 'System
Note: See TracBrowser for help on using the repository browser.