Ignore:
Timestamp:
Aug 16, 2008, 1:25:04 AM (16 years ago)
Author:
NoWest
Message:

IListおよびICollectionをインターフェイス化

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/ablib/src/Classes/System/Collections/Generic/List.ab

    r587 r592  
    4040
    4141Class List<T>
    42     Inherits IList<T>
     42    Implements IList<T>
    4343
    4444    items As *T
     
    9595    @param  インデックス
    9696    */
    97     Override Sub Operator[] ( index As Long, item As T )
     97    Sub Operator[] ( index As Long, item As T )
    9898        Item[index] = item
    9999    End Sub
    100     Override Function Operator[] ( index As Long ) As T
     100    Function Operator[] ( index As Long ) As T
    101101        Return Item[index]
    102102    End Function
Note: See TracChangeset for help on using the changeset viewer.