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:
@@ -240,7 +240,7 @@ namespace DiscImageChef.Filesystems
|
||||
FreeClustersSpecified = true,
|
||||
Dirty = efsSb.sb_dirty > 0,
|
||||
VolumeName = StringHandlers.CToString(efsSb.sb_fname, CurrentEncoding),
|
||||
VolumeSerial = string.Format("{0:X8}", efsSb.sb_checksum),
|
||||
VolumeSerial = $"{efsSb.sb_checksum:X8}",
|
||||
CreationDate = DateHandlers.UNIXToDateTime(efsSb.sb_time),
|
||||
CreationDateSpecified = true
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user