Big5 to/from Utf-8 string conversion module

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Mullin Yu

    Big5 to/from Utf-8 string conversion module

    I want to develop a middle tier module of big5 to/from utf-8 conversion
    module by using .NET platform.

    utf-8 big5
    -------> [module] ------->
    <------ <-------
    utf-8 big5

    any ideas of classes and methods to use?


  • Mihai N.

    #2
    Re: Big5 to/from Utf-8 string conversion module

    [color=blue]
    > I want to develop a middle tier module of big5 to/from utf-8 conversion
    > module by using .NET platform.
    > ...
    > any ideas of classes and methods to use?[/color]
    System.Text.Enc oding
    - Encoding.GetEnc oding
    - Encoding.Conver t

    --
    Mihai
    -------------------------
    Replace _year_ with _ to get the real email

    Comment

    • Jon Skeet [C# MVP]

      #3
      Re: Big5 to/from Utf-8 string conversion module

      Mullin Yu <mullin_yu@ctil .com> wrote:[color=blue]
      > I want to develop a middle tier module of big5 to/from utf-8 conversion
      > module by using .NET platform.
      >
      > utf-8 big5
      > -------> [module] ------->
      > <------ <-------
      > utf-8 big5
      >
      > any ideas of classes and methods to use?[/color]

      See http://www.pobox.com/~skeet/csharp/unicode.html

      --
      Jon Skeet - <skeet@pobox.co m>
      Pobox has been discontinued as a separate service, and all existing customers moved to the Fastmail platform.

      If replying to the group, please do not mail me too

      Comment

      Working...