Storing string

  • Thread starter Thread starter SK
  • Start date Start date
S

SK

I have a string that consists of both japanese characters
and english characters .how do i store this in a text file.
Please help
 
SK said:
I have a string that consists of both japanese characters
and english characters .how do i store this in a text file.

Use an encoding which supports all the character you need. I suggest
using either Encoding.Unicode or Encoding.UTF8.
 
Back
Top