C# Class ListFacade, code

Inheritance: IList
Afficher le fichier Open project: shendongnian/code Class Usage Examples

Méthodes publiques

Méthode Description
Add ( item ) : void
Clear ( ) : void
Contains ( item ) : bool
CopyTo ( Array, array, int arrayIndex ) : void
GetEnumerator ( ) : IEnumerator
IndexOf ( item ) : int
Insert ( int index, item ) : void
ListFacade ( IList innerList )
Remove ( item ) : bool
RemoveAt ( int index ) : void
this ( int index ) : TOut

Private Methods

Méthode Description
System ( ) : System.Collections.IEnumerator

Method Details

Add() public méthode

public Add ( item ) : void
Résultat void

Clear() public méthode

public Clear ( ) : void
Résultat void

Contains() public méthode

public Contains ( item ) : bool
Résultat bool

CopyTo() public méthode

public CopyTo ( Array, array, int arrayIndex ) : void
array Array,
arrayIndex int
Résultat void

GetEnumerator() public méthode

public GetEnumerator ( ) : IEnumerator
Résultat IEnumerator

IndexOf() public méthode

public IndexOf ( item ) : int
Résultat int

Insert() public méthode

public Insert ( int index, item ) : void
index int
Résultat void

ListFacade() public méthode

public ListFacade ( IList innerList )
innerList IList

Remove() public méthode

public Remove ( item ) : bool
Résultat bool

RemoveAt() public méthode

public RemoveAt ( int index ) : void
index int
Résultat void

this() public méthode

public this ( int index ) : TOut
index int
Résultat TOut