I have this text in txt file:
[
{
"book_name": "CYRILLIC LETTERS",
"book_id": "Text",
},
{
"book_name": "CYRILLIC LETTERS",
"book_id": "Text",
},
]
When I use StreamReader to read it, it is replacing the cyrillic letters with question marks. What should I do to be able read properly?
StreamReader readStream = new StreamReader("D:\\TEST.txt");
string text = readStream.ReadToEnd();
Thanks for the help!