REFACTOR: Use string interpolation expression.

This commit is contained in:
2017-12-21 17:58:51 +00:00
parent a895700757
commit 4e6e8f340a
182 changed files with 766 additions and 1256 deletions

View File

@@ -54,7 +54,7 @@ namespace DiscImageChef.Core
f = lba + 450150;
}
return string.Format("{0}:{1:D2}:{2:D2}", m, s, f);
return $"{m}:{s:D2}:{f:D2}";
}
static string DdcdLbaToMsf(long lba)