I am trying to use CLIPS.NET to integrate my CLIPS expert system with .Net App. The problem is that some of my facts that I use includes some Cyrillic strings.
When I got result back to .Net app from Clips. All Cyrillic strings are scrambled (see the picture below).

Code Sample (fullName here has Cyrillic symbols inside):
String findAllActiveMembers = "(find-all-facts ((?f Member )) (= ?f:isActive 1))";
MultifieldValue members = (MultifieldValue)clips.Eval(findAllActiveMembers);
foreach (FactAddressValue member in members) {
SymbolValue tag = (SymbolValue)member.GetSlotValue("tagName");
StringValue fullName = (StringValue)member.GetSlotValue("fullName");
this.factList.Items.Add(tag.Value + " " + fullName.Value);
}
What can I do to get them correctly? Clips IDE 6.4 works fine and shows these strings correctly
Thank you!