Class Genre
public sealed class Genre : IDisposable
- Inheritance
-
Genre
- Implements
- Inherited Members
Constructors
Genre(string)
public Genre(string genre)
Parameters
genre
string
Properties
Albums
Gets the AlbumCollection for the Genre.
public AlbumCollection Albums { get; }
Property Value
IsDisposed
Gets a value indicating whether the object is disposed.
public bool IsDisposed { get; }
Property Value
Name
Gets the name of the Genre.
public string Name { get; }
Property Value
Songs
Gets the SongCollection for the Genre.
public SongCollection Songs { get; }
Property Value
Methods
Dispose()
Immediately releases the unmanaged resources used by this object.
public void Dispose()
GetHashCode()
Gets the hash code for this instance.
public override int GetHashCode()
Returns
ToString()
Returns a String representation of the Genre.
public override string ToString()