There is a CSV file which encoded in Shift-JIS(cp932).
Even though I tried to find API or doc, whether there is any way to read and convert it into UTF-8 properly.
Is there any API like this in syncfusion component itself?
or
using (var reader = new StreamReader(filePath, Encoding.GetEncoding("shift-jis")))
though I didn't try this code line, but I am not sure if this is the right thing or not, or I would like to know is there any way I can implement this working with syncfusion API itself.
Than you so much.