Show / Hide Table of Contents

Class AccessListBase<T>

Inheritance
System.Object
AccessListBase<T>
AccessList<T, TBase>
AssetList<T>
Implements
System.Collections.IList<T>
IReadOnlyList<T>
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: AssetRipper.Assets.Generics
Assembly: AssetRipper.Assets.dll
Syntax
public abstract class AccessListBase<T>
Type Parameters
Name Description
T

Properties

| Improve this Doc View Source

Capacity

The capacity of the list

Declaration
public abstract int Capacity { get; set; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

Count

Declaration
public abstract int Count { get; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

IsReadOnly

Declaration
public bool IsReadOnly { get; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

Item[Int32]

Declaration
public abstract T this[int index] { get; set; }
Parameters
Type Name Description
System.Int32 index
Property Value
Type Description
T

Methods

| Improve this Doc View Source

Add(T)

Declaration
public abstract void Add(T item)
Parameters
Type Name Description
T item
| Improve this Doc View Source

AddNew()

Add a new element to the list

Declaration
public abstract T AddNew()
Returns
Type Description
T
| Improve this Doc View Source

Clear()

Declaration
public abstract void Clear()
| Improve this Doc View Source

Contains(T)

Declaration
public abstract bool Contains(T item)
Parameters
Type Name Description
T item
Returns
Type Description
System.Boolean
| Improve this Doc View Source

CopyTo(T[], Int32)

Declaration
public abstract void CopyTo(T[] array, int arrayIndex)
Parameters
Type Name Description
T[] array
System.Int32 arrayIndex
| Improve this Doc View Source

EnsureCapacity(Int32)

Declaration
public abstract int EnsureCapacity(int capacity)
Parameters
Type Name Description
System.Int32 capacity
Returns
Type Description
System.Int32
| Improve this Doc View Source

GetEnumerator()

Declaration
public IEnumerator<T> GetEnumerator()
Returns
Type Description
System.Collections.IEnumerator<T>
| Improve this Doc View Source

IndexOf(T)

Declaration
public abstract int IndexOf(T item)
Parameters
Type Name Description
T item
Returns
Type Description
System.Int32
| Improve this Doc View Source

Insert(Int32, T)

Declaration
public abstract void Insert(int index, T item)
Parameters
Type Name Description
System.Int32 index
T item
| Improve this Doc View Source

Remove(T)

Declaration
public abstract bool Remove(T item)
Parameters
Type Name Description
T item
Returns
Type Description
System.Boolean
| Improve this Doc View Source

RemoveAt(Index)

Declaration
public void RemoveAt(Index index)
Parameters
Type Name Description
Index index
| Improve this Doc View Source

RemoveAt(Int32)

Declaration
public abstract void RemoveAt(int index)
Parameters
Type Name Description
System.Int32 index
| Improve this Doc View Source

ToString()

Declaration
public override string ToString()
Returns
Type Description
System.String
Overrides
System.Object.ToString()

Explicit Interface Implementations

| Improve this Doc View Source

IEnumerable.GetEnumerator()

Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Type Description
System.Collections.IEnumerator

Implements

System.Collections.IList<>
IReadOnlyList<>

Extension Methods

AccessListBaseExtensions.ToPPtrAccessList<TPPtr, TAsset>(AccessListBase<TPPtr>, AssetCollection)
  • Improve this Doc
  • View Source
☀
☾
In This Article
Back to top
Generated by DocFX
☀
☾