I have a text file that contains a single word but it is with language : Arabic I want to extract it
My code is:
string text = System.IO.File.ReadAllText(@"C:\CINPROCESSING\nom.txt");
Console.WriteLine(text );
I have the result with unknown characters : ????
How i can fix it?
Thanks,