Hello Guys,
I am having some problem with Unicode string in KATAKANA format.
I am decoding string and then storing in db (SYbase).
Also while retrieving data I am encoding and then displaying.
Source Encoding is jp_shift
Target Encoding is 932.
But the data get stores in ???? format.
In VB the code works perfect ...
While saving only VB is doing the following encoding ...
temp = StrConv(Value, vbFromUnicode)
where Value is string passed ..
Can we migrate this code to C#.NET ?
I am having some problem with Unicode string in KATAKANA format.
I am decoding string and then storing in db (SYbase).
Also while retrieving data I am encoding and then displaying.
Source Encoding is jp_shift
Target Encoding is 932.
But the data get stores in ???? format.
In VB the code works perfect ...
While saving only VB is doing the following encoding ...
temp = StrConv(Value, vbFromUnicode)
where Value is string passed ..
Can we migrate this code to C#.NET ?
Comment