REFACTOR: Use string interpolation expression.

This commit is contained in:
2017-12-21 17:58:51 +00:00
parent 9083dc4c30
commit c47b866af1
11 changed files with 72 additions and 120 deletions

View File

@@ -319,7 +319,7 @@ namespace DiscImageChef.Decoders.Xbox
sizeString = "120mm";
break;
default:
sizeString = string.Format("unknown size identifier {0}", decoded.DiscSize);
sizeString = $"unknown size identifier {decoded.DiscSize}";
break;
}