Fix test program output

This commit is contained in:
Matt Nadareski
2019-09-29 12:08:31 -07:00
parent 5ffaedc024
commit fd866465b4
2 changed files with 2 additions and 2 deletions

View File

@@ -22,7 +22,7 @@ namespace Test
private static void Changed(object source, FileProtection value)
{
Console.WriteLine($"{value.Percentage * 100}: {value.Filename} - {value.Protection}");
Console.WriteLine($"{value.Percentage * 100:N2}%: {value.Filename} - {value.Protection}");
}
}
}