.net - ExcelLite can not read russian characters -


when read excel file using excellite library silverlight, russian characters don't read. instead, create line this: ,& #"", $ !# " -" how can transcode, or bring them required mean or solve problem in other way?

problem solved:

https://excellite.codeplex.com/workitem/270

to support unicode, think should modify method getstringunicode(byte[] value) in conversionhelper.cs

public static string getstringunicode(byte[] value) {    return new system.text.unicodeencoding().getstring(value, 0, value.length); } 

Comments