The following in C# return different values than
VB when i is greater than 128
char i;
Convert.ToChar(i);
or
i.ToString()
I have also tried:
Added Microsoft.VisualBasic namespace to page
char
vb = Microsoft.VisualBasic.Strings.Chr(i);
Receive error message:
The type or namespace name 'Strings' does not exist in the namespace 'Microsoft.VisualBasic' (are you missing an assembly reference?)