mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
REFACTOR: Use string interpolation expression.
This commit is contained in:
@@ -154,8 +154,7 @@ namespace DiscImageChef.DiscImages
|
||||
|
||||
if(!sm.Success) return false;
|
||||
|
||||
ImageInfo.ImageApplicationVersion =
|
||||
string.Format("{0}.{1}", sm.Groups["major"].Value, sm.Groups["minor"].Value);
|
||||
ImageInfo.ImageApplicationVersion = $"{sm.Groups["major"].Value}.{sm.Groups["minor"].Value}";
|
||||
|
||||
ImageInfo.Cylinders = (uint)(header.cylinders + 1);
|
||||
ImageInfo.Heads = (uint)(header.heads + 1);
|
||||
|
||||
Reference in New Issue
Block a user