anyone help with the conversion. this is from vb
i need help to convert this to C#. thanx...VB Code:
CType(System.Enum.Parse(GetType(FontStyle), "Bold"), FontStyle)
Printable View
anyone help with the conversion. this is from vb
i need help to convert this to C#. thanx...VB Code:
CType(System.Enum.Parse(GetType(FontStyle), "Bold"), FontStyle)
This is in C# .
PHP Code:FontStyle f=((FontStyle)(Enum.Parse(typeof(FontStyle), "Bold")));
thanx mate...