пытаюсь так
Код | string unicodeString = "This string contains the unicode character Pi";
// Create two different encodings. Encoding ascii = Encoding.UTF8; Encoding unicode = Encoding.GetEncoding(1252);
// Convert the string into a byte[]. byte[] unicodeBytes = unicode.GetBytes(unicodeString);
// Perform the conversion from one encoding to the other. byte[] asciiBytes = Encoding.Convert(unicode, ascii, unicodeBytes);
// Convert the new byte[] into a char[] and then into a string. // This is a slightly different approach to converting to illustrate // the use of GetCharCount/GetChars. char[] asciiChars = new char[ascii.GetCharCount(asciiBytes, 0, asciiBytes.Length)]; ascii.GetChars(asciiBytes, 0, asciiBytes.Length, asciiChars, 0); string asciiString = new string(asciiChars);
|
переменные я там уже как угодно меня.... чистого cp1252 не нашел.. |