using System.Collections.Generic; namespace Funique { /// /// Video information related utility methods
/// ------------------------------------------------
/// 影片資訊相關幫助函式 ///
public interface IToolVideoInfoExtension { /// /// Check if there is a match video name in the list
/// ------------------------------------------------
/// 查看影片資料陣列中是否有重複的影片名稱 ///
/// Video list /// Test target name /// Has match bool CheckSameVideoName(VideoInfo[] videoList, string videoName); /// /// /// /// Video list /// Test target name /// Has match bool CheckSameVideoName(List videoList, string videoName); } }