using System.Collections.Generic;
using System.Linq;
namespace Funique
{
///
/// Extensions: Video Info
/// ------------------------------------------------
/// 擴充: 影片清單
///
public static class VideoInfoExtensions
{
public static bool CheckSameVideoName(this VideoInfo[] videoList, string videoName)
{
return videoList.ToList().FindIndex(x => x.FilterName == videoName) != -1;
}
public static bool CheckSameVideoName(this List videoList, string videoName)
{
return videoList.FindIndex(x => x.FilterName == videoName) != -1;
}
}
}