Class SongCollection
Inheritance
SongCollection
Implements
IEnumerable
IDisposable
Assembly: MonoGame.Framework.dll
public class SongCollection : ICollection<Song>
Properties
Declaration
public int Count { get; }
Property Value
Declaration
public bool IsReadOnly { get; }
Property Value
Declaration
public Song this[int index] { get; }
Parameters
Type |
Name |
Description |
Int32 |
index |
|
Property Value
Methods
Declaration
public void Add(Song item)
Parameters
Type |
Name |
Description |
Song |
item |
|
Declaration
Declaration
public SongCollection Clone()
Returns
Declaration
public bool Contains(Song item)
Parameters
Type |
Name |
Description |
Song |
item |
|
Returns
Declaration
public void CopyTo(Song[] array, int arrayIndex)
Parameters
Type |
Name |
Description |
Song[] |
array |
|
Int32 |
arrayIndex |
|
Declaration
Declaration
public IEnumerator<Song> GetEnumerator()
Returns
Type |
Description |
IEnumerator<Song> |
|
Declaration
public int IndexOf(Song item)
Parameters
Type |
Name |
Description |
Song |
item |
|
Returns
Declaration
public bool Remove(Song item)
Parameters
Type |
Name |
Description |
Song |
item |
|
Returns
Implements
IEnumerable<>
IEnumerable
IDisposable