diff --git a/MonoGame.Framework/Media/Artist.cs b/MonoGame.Framework/Media/Artist.cs index e98515ffda6..22f5bce0d54 100644 --- a/MonoGame.Framework/Media/Artist.cs +++ b/MonoGame.Framework/Media/Artist.cs @@ -6,6 +6,17 @@ namespace Microsoft.Xna.Framework.Media { + /// + /// Provides access to artist information in the media library. + /// + /// + /// + /// The class provides information about an artist, including the artist's , , and + /// + /// + /// You can obtain an Artist through the and properties. + /// + /// public sealed class Artist : IDisposable { private string artist; @@ -54,6 +65,10 @@ public SongCollection Songs } } + /// + /// Creates a new instance of class. + /// + /// Name of the artist. public Artist(string artist) { this.artist = artist;