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:
@@ -207,7 +207,7 @@ namespace DiscImageChef.DiscImages
|
||||
case DiskType.MF2HD:
|
||||
tracks = 160;
|
||||
break;
|
||||
default: throw new ImageNotSupportedException(string.Format("Incorrect disk type {0}", (byte)type));
|
||||
default: throw new ImageNotSupportedException($"Incorrect disk type {(byte)type}");
|
||||
}
|
||||
|
||||
byte[] trackBytes = new byte[tracks];
|
||||
|
||||
Reference in New Issue
Block a user