Hi!
I'm trying to read wstring from file.
This is an file content example:
"83
118
269
...
"
The number 83 represent "S", 118 represent "v", 269 represent "č", and so on..
So, I tried to read the numbers into int. But the problem is, that I don't know how to convert int to wstring, to get actual letter(convert: int value of 83 to letter "S").
tnx