I'm using the PrivateFontCollection
class to add some font into memory dynamically.
_PrivateFontCollection.AddFontFile(string.Format("FontAddress{0}.ttf,_FontName);
I have a web browser
in my win form application,for each page i use an unique font and before showing each page i load it's page font to memory.each font get 176KB
of my memory,
so i want to dispose loaded font for previews page from memory (for example release font "P1" form my font collection)
How can i do this?