コード例 #1
0
ファイル: MinerManager.cs プロジェクト: leetmike/EasyGarlic
        public async Task <bool> VerifyMiner(Miner miner)
        {
            bool exists = await Task.Run(() => { return(File.Exists(miner.installPath + miner.fileNameMine)); });

            return(exists);
        }