Class ObservableList<T>
상속된 멤버
네임스페이스: UnityEngine.Experimental.Rendering
어셈블리: solution.dll
구문
public class ObservableList<T> : IList<T>, ICollection<T>, IEnumerable<T>, IEnumerable
  타입 파라미터
| 이름 | 설명 | 
|---|---|
| T | 
생성자
| 이름 | 설명 | 
|---|---|
| ObservableList() | |
| ObservableList(IEnumerable<T>) | |
| ObservableList(int) | 
프로퍼티
| 이름 | 설명 | 
|---|---|
| Count | Gets the number of elements contained in the ICollection<T>.  | 
      
| IsReadOnly | Gets a value indicating whether the ICollection<T> is read-only.  | 
      
| this[int] | Gets or sets the element at the specified index.  | 
      
메서드
| 이름 | 설명 | 
|---|---|
| Add(T) | Adds an item to the ICollection<T>.  | 
      
| Add(params T[]) | |
| Clear() | Removes all items from the ICollection<T>.  | 
      
| Contains(T) | Determines whether the ICollection<T> contains a specific value.  | 
      
| CopyTo(T[], int) | Copies the elements of the ICollection<T> to an Array, starting at a particular Array index.  | 
      
| GetEnumerator() | Returns an enumerator that iterates through the collection.  | 
      
| IndexOf(T) | Determines the index of a specific item in the IList<T>.  | 
      
| Insert(int, T) | Inserts an item to the IList<T> at the specified index.  | 
      
| Remove(T) | Removes the first occurrence of a specific object from the ICollection<T>.  | 
      
| Remove(params T[]) | |
| RemoveAt(int) | Removes the IList<T> item at the specified index.  | 
      
이벤트
| 이름 | 설명 | 
|---|---|
| ItemAdded | |
| ItemRemoved |