I need to transliterate label text from latin to Cyrillic before print. I don't have idea how to do that. I've tried like this but didn't work.
public void Komponenta()
{
words.Add("A", "A");
words.Add("Б", "B");
words.Add("В", "C");
words.Add("Г", "D");
words.Add("Д", "E");
words.Add("Ѓ", "F");
words.Add("Е", "G");
words.Add("Ж", "H");
..and so on
}
if (Label53.Text == "4")
{
string source = Label47.Text;
foreach (KeyValuePair<string, string> pair in words)
{
source.Replace(pair.Value, pair.Key);
}
Label47.Text = source;