ICSharpCode.TextEditor.TextEditorControlBase.ParseFont C# (CSharp) 메소드

ParseFont() 정적인 개인적인 메소드

static private ParseFont ( string font ) : Font
font string
리턴 System.Drawing.Font
		static Font ParseFont(string font)
		{
			string[] descr = font.Split(new char[]{',', '='});
			return new Font(descr[1], Single.Parse(descr[3]));
		}