How does one get the actual version number of a font in C#? In my case, I need to know if version 6.06 of the Segoe UI Symbol font is installed.
C# Get Version Number of Font
948 Views Asked by Mike Ward At
2
There are 2 best solutions below
0

I don't know if it was introduced more recently, but by now it's possible to get the version of a font for a specific typeface via TryGetGlyphTypeface()
.
Example for Segoe UI:
var segoe = new FontFamily("Segoe UI");
var typeface = new Typeface(segoe, FontStyles.Normal, FontWeights.Normal, FontStretches.Normal);
var isGlyphTypeface = typeface.TryGetGlyphTypeface(out var glyph);
if(isGlyphTypeface)
{
Console.WriteLine(glyph.Version);
}
There is no way to see the version of a font file from within C#, you can only check installed fonts by name, so...
I would get the name and hash of the correct file and compare that to the target system:
...