C# 클래스 Axiom.Math.Collections.BaseCollection

Serves as a basis for strongly typed collections in the math lib.
Can't wait for Generics in .Net Framework 2.0!
상속: ICollection, IEnumerable, IEnumerator
파일 보기 프로젝트 열기: WolfgangSt/axiom

보호된 프로퍼티들

프로퍼티 타입 설명
objectList System.Collections.ArrayList

공개 메소드들

메소드 설명
BaseCollection ( ) : System

Clear ( ) : void

Clears all objects from the collection.

CopyTo ( System array, int index ) : void

GetEnumerator ( ) : System.Collections.IEnumerator
MoveNext ( ) : bool

Moves to the next item in the enumeration if there is one.

Remove ( object item ) : void

Removes the item from the collection.

Reset ( ) : void

Resets the in progress enumerator.

this ( int index ) : object

보호된 메소드들

메소드 설명
Add ( object item ) : void

Adds an item to the collection.

메소드 상세

Add() 보호된 메소드

Adds an item to the collection.
protected Add ( object item ) : void
item object
리턴 void

BaseCollection() 공개 메소드

public BaseCollection ( ) : System
리턴 System

Clear() 공개 메소드

Clears all objects from the collection.
public Clear ( ) : void
리턴 void

CopyTo() 공개 메소드

public CopyTo ( System array, int index ) : void
array System
index int
리턴 void

GetEnumerator() 공개 메소드

public GetEnumerator ( ) : System.Collections.IEnumerator
리턴 System.Collections.IEnumerator

MoveNext() 공개 메소드

Moves to the next item in the enumeration if there is one.
public MoveNext ( ) : bool
리턴 bool

Remove() 공개 메소드

Removes the item from the collection.
public Remove ( object item ) : void
item object
리턴 void

Reset() 공개 메소드

Resets the in progress enumerator.
public Reset ( ) : void
리턴 void

this() 공개 메소드

public this ( int index ) : object
index int
리턴 object

프로퍼티 상세

objectList 보호되어 있는 프로퍼티

protected ArrayList,System.Collections objectList
리턴 System.Collections.ArrayList