I am trying to create an array of strings that will contain Russian characters, this way:
string[ ] rawKeys = new string[ ] {
“!”,
“А”,
“Б”,
“В”,
“Г”,
“Д”,
“Е”,
“Ё”,
“Ж”,
“З”,
“И”,
“Й”,
“К”,
“Л”,
“М”,
“Н”,
“О”,
“П”,
“Р”,
“С”,
“Т”,
“У”,
“Ф”,
“Х”,
“Ц”,
“Ч”,
“Ш”,
“Щ”,
“Ъ”,
“Ы”,
“Ь”,
“Э”,
“Ю”,
“Я”
};
But after executing such code, the only string that keeps its value is the first one “!”, the rest that are cyrillic characters are substituted by “??” instead.
Any ideas?