Encoding.GetEncoding("ISO-8859-9") kullan.
Bir de şu şekilde bir fonksion kullanırsan excellde türkçe karakterler düzgün şekilde görüneceğini sanıyorum.
Not: fonksiyondaki & ve # arasındaki boşluk olmasın. Ben burda görünebilmesi için boşluk yaptım.
private string ConvertTrChar(string text)
{
text = text.Replace("Ğ", "& #286;");
text = text.Replace("Ü", "& #220;");
text = text.Replace("Ş", "& #350;");
text = text.Replace("İ", "& #304;");
text = text.Replace("Ö", "& #214;");
text = text.Replace("Ç", "& #199;");
text = text.Replace("ğ", "& #287;");
text = text.Replace("ü", "& #252;");
text = text.Replace("ş", "& #351;");
text = text.Replace("ı", "& #305;");
text = text.Replace("ö", "& #246;");
text = text.Replace("ç", "& #231;");
return text;
}
|