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:
@@ -39,7 +39,7 @@ namespace DiscImageChef.Decoders.MMC
|
||||
switch(MMCVendorID)
|
||||
{
|
||||
case 0x15: return "Samsung";
|
||||
default: return string.Format("Unknown manufacturer ID 0x{0:X2}", MMCVendorID);
|
||||
default: return $"Unknown manufacturer ID 0x{MMCVendorID:X2}";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user