string type to char type in Windows Form application

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • kenneth6
    New Member
    • Mar 2007
    • 79

    string type to char type in Windows Form application

    I am writing sth about data in string type in console mode.

    now, I transform it to Windows Form Application, i know managed type should be used here instead of the unmanaged type. should I change the unmanaged type of string to char* for better data manipulation??
  • weaknessforcats
    Recognized Expert Expert
    • Mar 2007
    • 9214

    #2
    If you have a managed applicatrion, then I would stick with managed code and not use pointers like char*.

    That is, unless there is some hard-code reason you can't use managed code.

    Comment

    Working...