Beispiel #1
0
        public Track ToTrack(ref TimeSpan offset)
        {
            ThrowHelper.AssertLinkConverstion(LinkType, LinkType.Track);

            int   n = 0;
            Track t = new Track(LibSpotify.sp_link_as_track_and_offset_r(Handle, ref n), false);

            offset = TimeSpan.FromMilliseconds(n);
            return(t);
        }