Class TextureData.Color32ArrayFacade
Inheritance
TextureData.Color32ArrayFacade
Syntax
public class TextureData.Color32ArrayFacade : IList<Color32>, ICollection<Color32>, IEnumerable<Color32>, IEnumerable
Constructors
Color32ArrayFacade(List<Color32>)
Declaration
public Color32ArrayFacade(List<Color32> list)
Parameters
Type |
Name |
Description |
List<Color32> |
list |
|
Properties
Count
Declaration
public int Count { get; }
Property Value
IsReadOnly
Declaration
public bool IsReadOnly { get; }
Property Value
this[int]
Declaration
public Color32 this[int index] { get; set; }
Parameters
Type |
Name |
Description |
int |
index |
|
Property Value
Length
Declaration
public int Length { get; }
Property Value
Methods
Add(Color32)
Declaration
public void Add(Color32 item)
Parameters
Type |
Name |
Description |
Color32 |
item |
|
Clear()
Declaration
Contains(Color32)
Declaration
public bool Contains(Color32 item)
Parameters
Type |
Name |
Description |
Color32 |
item |
|
Returns
CopyTo(Color32[], int)
Declaration
public void CopyTo(Color32[] array, int arrayIndex)
Parameters
Type |
Name |
Description |
Color32[] |
array |
|
int |
arrayIndex |
|
GetEnumerator()
Declaration
public IEnumerator<Color32> GetEnumerator()
Returns
IndexOf(Color32)
Declaration
public int IndexOf(Color32 item)
Parameters
Type |
Name |
Description |
Color32 |
item |
|
Returns
Insert(int, Color32)
Declaration
public void Insert(int index, Color32 item)
Parameters
Type |
Name |
Description |
int |
index |
|
Color32 |
item |
|
Remove(Color32)
Declaration
public bool Remove(Color32 item)
Parameters
Type |
Name |
Description |
Color32 |
item |
|
Returns
RemoveAt(int)
Declaration
public void RemoveAt(int index)
Parameters
Type |
Name |
Description |
int |
index |
|
Implements
Extension Methods