Class ReorderableList<U>
Wrapper class for our custom reorderable drawer
Inheritance
System.Object
ReorderableList<U>
Assembly: com.bennykok.runtime-debug-action.dll
Syntax
[Serializable]
public class ReorderableList<U> : ReorderableBase, IEnumerable<U>, IEnumerable
Type Parameters
Name |
Description |
U |
List Type
|
Fields
values
Declaration
Field Value
Type |
Description |
System.Collections.Generic.List<U> |
|
Properties
Count
Declaration
public int Count { get; }
Property Value
Type |
Description |
System.Int32 |
|
Item[Int32]
Declaration
public U this[int index] { get; set; }
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
Property Value
Methods
GetEnumerator()
Declaration
public IEnumerator<U> GetEnumerator()
Returns
Type |
Description |
System.Collections.Generic.IEnumerator<U> |
|