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:
@@ -156,7 +156,7 @@ namespace DiscImageChef.Filesystems
|
||||
|
||||
xmlFSType.ClusterSize = ntfs_bb.spc * ntfs_bb.bps;
|
||||
xmlFSType.Clusters = ntfs_bb.sectors / ntfs_bb.spc;
|
||||
xmlFSType.VolumeSerial = string.Format("{0:X16}", ntfs_bb.serial_no);
|
||||
xmlFSType.VolumeSerial = $"{ntfs_bb.serial_no:X16}";
|
||||
xmlFSType.Type = "NTFS";
|
||||
|
||||
information = sb.ToString();
|
||||
|
||||
Reference in New Issue
Block a user