コード例 #1
0
ファイル: DownloadInfo.cs プロジェクト: cyanfish/naps2
 public DownloadInfo(string fileName, string urlFormat, double size, string sha1, DownloadFormat format)
 {
     FileName = fileName;
     Url = string.Format(urlFormat, fileName);
     Size = size;
     Sha1 = sha1;
     Format = format;
 }
コード例 #2
0
ファイル: DownloadInfo.cs プロジェクト: ziceptor/naps2
 public DownloadInfo(string fileName, string urlFormat, double size, string sha1, DownloadFormat format)
 {
     FileName = fileName;
     Url      = string.Format(urlFormat, fileName);
     Size     = size;
     Sha1     = sha1;
     Format   = format;
 }