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:
@@ -249,7 +249,7 @@ namespace DiscImageChef.Filesystems
|
||||
ClusterSize = homeblock.cluster * 512,
|
||||
Clusters = (long)partition.Size / (homeblock.cluster * 512),
|
||||
VolumeName = StringHandlers.SpacePaddedToString(homeblock.volname, CurrentEncoding),
|
||||
VolumeSerial = string.Format("{0:X8}", homeblock.serialnum)
|
||||
VolumeSerial = $"{homeblock.serialnum:X8}"
|
||||
};
|
||||
if(homeblock.credate > 0)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user