参考:http://www.cnblogs.com/xiaofengfeng/archive/2011/12/23/2299679.html
public static string get_uft8(string unicodeString) { UTF8Encoding utf8 = new UTF8Encoding(); Byte[] encodedBytes = utf8.GetBytes(unicodeString); String decodedString = utf8.GetString(encodedBytes); return decodedString; }
没用,C#调用C dll 在C代码层不生效。