ChobiQ.DoubanFMAPICodePack.StorageManager.ClearLastChannel C# (CSharp) Method

ClearLastChannel() public static method

public static ClearLastChannel ( ) : void
return void
        public static void ClearLastChannel()
        {
            if (LastChannelExists)
            {
                s_channelFile.Delete();
            }
        }

Usage Example

Example #1
0
 /// <summary>
 /// Removes saved last time played channel if exists.
 /// </summary>
 public void ClearLastChannel()
 {
     StorageManager.ClearLastChannel();
 }