我正在尝试在字符串上分配 Unicode,但它返回“Привет”字符串为“Привет”但我需要“Привет”,我正在通过以下函数进行转换。
public string Convert(string str)
{
byte[] utf8Bytes = Encoding.UTF8.GetBytes(str);
str = Encoding.UTF8.GetString(utf8Bytes);
return str;
}
我能做些什么来解决这个问题以返回“Привет”。