I have a string variable that stores a text in Turkish language
string str = "açğş";
I want to convert each character of this string to appropriate English Letter.
So that the conversion must be like: , açğş --> acgs
How can I do it using .NET/C# ?