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

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

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

File size: 799 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
[261]18Interface IDisposable
19 ' Method
20 Sub Dispose()
21End Interface
22
[708]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
[77]31Class EventArgs
[223]32Public
[559]33 Static Empty = Nothing As EventArgs
[77]34End Class
35
[468]36Delegate Sub EventHandler(sender As Object, e As EventArgs)
37
[467]38Delegate Sub AsyncCallback(ar As IAsyncResult)
[391]39
[261]40End Namespace 'System
Note: See TracBrowser for help on using the repository browser.