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

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

IComparableとIComparable<T>で定義が重複しているとエラーになるので、非ジェネリック版IComparableを削除。

File size: 799 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 IDisposable
19 ' Method
20 Sub Dispose()
21End Interface
22
23Interface IEquatable<T>
24 Function Equals(other As T) As Boolean
25End Interface
26
27Interface IComparable<T>
28 Function CompareTo(other As T) As Long
29End Interface
30
31Class EventArgs
32Public
33 Static Empty = Nothing As EventArgs
34End Class
35
36Delegate Sub EventHandler(sender As Object, e As EventArgs)
37
38Delegate Sub AsyncCallback(ar As IAsyncResult)
39
40End Namespace 'System
Note: See TracBrowser for help on using the repository browser.