I have read string "ńîôč˙" from file by using code page windows-1251, instead of using iso-8859-2. It should be some Cyrillic string. How to implement function that will do following in C#:
string res = Recover("ńîôč˙");
string Recover(string input)
{
???
}
Where res is Cyrillic string that I would have got if I used good page when reading file in first place.