Convert single byte character string (half width) to double byte (full width)
问题 Recently I came across this code in a C# application. cDataString = Strings.StrConv(cDataString, VbStrConv.Wide); I understand that the StrConv is a string function of VB. You can call it by including 'using Microsoft.VisualBasic;'. It is supposed to covert half width japanese characters into full width ones. My question is: Is there a way to achieve the same WITHOUT using the VB functions and WITHOUT including the VB headers, using only the standard c# functions? I know there are many c#