hello, i'm currently working on the multi culture system for noscore. Is there anyone who know code pages for other countries ?
the only one i know for the moment is FR = windows-1252
the only one i know for the moment is FR = windows-1252
Code:
case RegionType.FR:
return CodePagesEncodingProvider.Instance.GetEncoding(1252);
case RegionType.EN:
case RegionType.DE:
case RegionType.IT:
case RegionType.PL:
case RegionType.ES:
case RegionType.CS:
case RegionType.TR:
default:
return Encoding.Default;