mirror of
https://github.com/aaru-dps/Aaru.Decoders.git
synced 2025-12-16 19:24:32 +00:00
REFACTOR: Use string interpolation expression.
This commit is contained in:
@@ -39,7 +39,7 @@ namespace DiscImageChef.Decoders.SecureDigital
|
||||
switch(SDVendorID)
|
||||
{
|
||||
case 0xAA: return "QEMU";
|
||||
default: return string.Format("Unknown manufacturer ID 0x{0:X2}", SDVendorID);
|
||||
default: return $"Unknown manufacturer ID 0x{SDVendorID:X2}";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user