REFACTOR: Use string interpolation expression.

This commit is contained in:
2017-12-21 17:58:51 +00:00
parent a895700757
commit 4e6e8f340a
182 changed files with 766 additions and 1256 deletions

View File

@@ -259,7 +259,7 @@ namespace DiscImageChef.Filesystems
.AppendLine();
xmlFSType.VolumeName = StringHandlers.CToString(cbmHdr.name, CurrentEncoding);
xmlFSType.VolumeSerial = string.Format("{0}", cbmHdr.diskId);
xmlFSType.VolumeSerial = $"{cbmHdr.diskId}";
}
else
{
@@ -282,7 +282,7 @@ namespace DiscImageChef.Filesystems
.AppendLine();
xmlFSType.VolumeName = StringHandlers.CToString(cbmBam.name, CurrentEncoding);
xmlFSType.VolumeSerial = string.Format("{0}", cbmBam.diskId);
xmlFSType.VolumeSerial = $"{cbmBam.diskId}";
}
information = sbInformation.ToString();