Results 1 to 3 of 3

Thread: [solved] conversion [any help]

  1. #1

    Thread Starter
    Fanatic Member brown monkey's Avatar
    Join Date
    Jun 2004
    Location
    Cebu
    Posts
    552

    [solved] conversion [any help]

    anyone help with the conversion. this is from vb
    VB Code:
    1. CType(System.Enum.Parse(GetType(FontStyle), "Bold"), FontStyle)
    i need help to convert this to C#. thanx...
    Last edited by brown monkey; Jun 19th, 2004 at 12:33 AM.

  2. #2
    Sleep mode
    Join Date
    Aug 2002
    Location
    RUH
    Posts
    8,083
    This is in C# .
    PHP Code:
    FontStyle f=((FontStyle)(Enum.Parse(typeof(FontStyle), "Bold"))); 

  3. #3

    Thread Starter
    Fanatic Member brown monkey's Avatar
    Join Date
    Jun 2004
    Location
    Cebu
    Posts
    552
    thanx mate...

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width