C# 클래스 System.Collections.ArrayList

상속: System.Collections.IEnumerable, System.Collections.IList, System.ICloneable
파일 보기 프로젝트 열기: dotnet/corefx 1 사용 예제들

공개 메소드들

메소드 설명
Adapter ( IList list ) : ArrayList
Add ( Object value ) : int
AddRange ( ICollection c ) : void
ArrayList ( ) : System.Security
ArrayList ( ICollection c ) : System.Security
ArrayList ( int capacity ) : System.Security
BinarySearch ( Object value ) : int
BinarySearch ( Object value, IComparer comparer ) : int
BinarySearch ( int index, int count, Object value, IComparer comparer ) : int
Clear ( ) : void
Clone ( ) : Object
Contains ( Object item ) : bool
CopyTo ( Array array ) : void
CopyTo ( Array array, int arrayIndex ) : void
CopyTo ( int index, Array array, int arrayIndex, int count ) : void
FixedSize ( ArrayList list ) : ArrayList
FixedSize ( IList list ) : IList
GetEnumerator ( ) : IEnumerator
GetEnumerator ( int index, int count ) : IEnumerator
GetRange ( int index, int count ) : ArrayList
IndexOf ( Object value ) : int
IndexOf ( Object value, int startIndex ) : int
IndexOf ( Object value, int startIndex, int count ) : int
Insert ( int index, Object value ) : void
InsertRange ( int index, ICollection c ) : void
LastIndexOf ( Object value ) : int
LastIndexOf ( Object value, int startIndex ) : int
LastIndexOf ( Object value, int startIndex, int count ) : int
ReadOnly ( ArrayList list ) : ArrayList
Remove ( Object obj ) : void
RemoveAt ( int index ) : void
RemoveRange ( int index, int count ) : void
Repeat ( Object value, int count ) : ArrayList
Reverse ( ) : void
Reverse ( int index, int count ) : void
SetRange ( int index, ICollection c ) : void
Sort ( ) : void
Sort ( IComparer comparer ) : void
Sort ( int index, int count, IComparer comparer ) : void
Synchronized ( ArrayList list ) : ArrayList
Synchronized ( IList list ) : IList
ToArray ( ) : Object[]
TrimToSize ( ) : void
this ( int index ) : Object

비공개 메소드들

메소드 설명
ArrayList ( bool trash ) : System.Security
EnsureCapacity ( int min ) : void
ReadOnly ( IList list ) : IList
ToArray ( Type type ) : Array

메소드 상세

Adapter() 공개 정적인 메소드

public static Adapter ( IList list ) : ArrayList
list IList
리턴 ArrayList

Add() 공개 메소드

public Add ( Object value ) : int
value Object
리턴 int

AddRange() 공개 메소드

public AddRange ( ICollection c ) : void
c ICollection
리턴 void

ArrayList() 공개 메소드

public ArrayList ( ) : System.Security
리턴 System.Security

ArrayList() 공개 메소드

public ArrayList ( ICollection c ) : System.Security
c ICollection
리턴 System.Security

ArrayList() 공개 메소드

public ArrayList ( int capacity ) : System.Security
capacity int
리턴 System.Security

BinarySearch() 공개 메소드

public BinarySearch ( Object value ) : int
value Object
리턴 int

BinarySearch() 공개 메소드

public BinarySearch ( Object value, IComparer comparer ) : int
value Object
comparer IComparer
리턴 int

BinarySearch() 공개 메소드

public BinarySearch ( int index, int count, Object value, IComparer comparer ) : int
index int
count int
value Object
comparer IComparer
리턴 int

Clear() 공개 메소드

public Clear ( ) : void
리턴 void

Clone() 공개 메소드

public Clone ( ) : Object
리턴 Object

Contains() 공개 메소드

public Contains ( Object item ) : bool
item Object
리턴 bool

CopyTo() 공개 메소드

public CopyTo ( Array array ) : void
array Array
리턴 void

CopyTo() 공개 메소드

public CopyTo ( Array array, int arrayIndex ) : void
array Array
arrayIndex int
리턴 void

CopyTo() 공개 메소드

public CopyTo ( int index, Array array, int arrayIndex, int count ) : void
index int
array Array
arrayIndex int
count int
리턴 void

FixedSize() 공개 정적인 메소드

public static FixedSize ( ArrayList list ) : ArrayList
list ArrayList
리턴 ArrayList

FixedSize() 공개 정적인 메소드

public static FixedSize ( IList list ) : IList
list IList
리턴 IList

GetEnumerator() 공개 메소드

public GetEnumerator ( ) : IEnumerator
리턴 IEnumerator

GetEnumerator() 공개 메소드

public GetEnumerator ( int index, int count ) : IEnumerator
index int
count int
리턴 IEnumerator

GetRange() 공개 메소드

public GetRange ( int index, int count ) : ArrayList
index int
count int
리턴 ArrayList

IndexOf() 공개 메소드

public IndexOf ( Object value ) : int
value Object
리턴 int

IndexOf() 공개 메소드

public IndexOf ( Object value, int startIndex ) : int
value Object
startIndex int
리턴 int

IndexOf() 공개 메소드

public IndexOf ( Object value, int startIndex, int count ) : int
value Object
startIndex int
count int
리턴 int

Insert() 공개 메소드

public Insert ( int index, Object value ) : void
index int
value Object
리턴 void

InsertRange() 공개 메소드

public InsertRange ( int index, ICollection c ) : void
index int
c ICollection
리턴 void

LastIndexOf() 공개 메소드

public LastIndexOf ( Object value ) : int
value Object
리턴 int

LastIndexOf() 공개 메소드

public LastIndexOf ( Object value, int startIndex ) : int
value Object
startIndex int
리턴 int

LastIndexOf() 공개 메소드

public LastIndexOf ( Object value, int startIndex, int count ) : int
value Object
startIndex int
count int
리턴 int

ReadOnly() 공개 정적인 메소드

public static ReadOnly ( ArrayList list ) : ArrayList
list ArrayList
리턴 ArrayList

Remove() 공개 메소드

public Remove ( Object obj ) : void
obj Object
리턴 void

RemoveAt() 공개 메소드

public RemoveAt ( int index ) : void
index int
리턴 void

RemoveRange() 공개 메소드

public RemoveRange ( int index, int count ) : void
index int
count int
리턴 void

Repeat() 공개 정적인 메소드

public static Repeat ( Object value, int count ) : ArrayList
value Object
count int
리턴 ArrayList

Reverse() 공개 메소드

public Reverse ( ) : void
리턴 void

Reverse() 공개 메소드

public Reverse ( int index, int count ) : void
index int
count int
리턴 void

SetRange() 공개 메소드

public SetRange ( int index, ICollection c ) : void
index int
c ICollection
리턴 void

Sort() 공개 메소드

public Sort ( ) : void
리턴 void

Sort() 공개 메소드

public Sort ( IComparer comparer ) : void
comparer IComparer
리턴 void

Sort() 공개 메소드

public Sort ( int index, int count, IComparer comparer ) : void
index int
count int
comparer IComparer
리턴 void

Synchronized() 공개 정적인 메소드

public static Synchronized ( ArrayList list ) : ArrayList
list ArrayList
리턴 ArrayList

Synchronized() 공개 정적인 메소드

public static Synchronized ( IList list ) : IList
list IList
리턴 IList

ToArray() 공개 메소드

public ToArray ( ) : Object[]
리턴 Object[]

TrimToSize() 공개 메소드

public TrimToSize ( ) : void
리턴 void

this() 공개 메소드

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