this line of code in C#
if ('\x007f' < ch)
is displayed on VB as
If (""c < ch) Then

the character inside the qoutes is not readable and in this case the line should have been

If (chr(&h7f) < ch) Then
DanAvni
0

Comments

3 comments

  • Clive Tong
    Thanks for reporting this. I've fixed it in the next EAP for 6.5.
    Clive Tong
    0
  • DanAvni
    another issue:
    the c# line
    builder.AppendFormat(@\u{0:X4}, (int) ch);
    where ch is a Char
    is writtent in VB as
    builder.AppendFormat("\u{0:X4}", CInt(ch))

    bin CInt(ch) is not valid and should be ASCW(ch)
    DanAvni
    0
  • Clive Tong
    I've logged that as issue RP-720.
    Clive Tong
    0

Add comment

Please sign in to leave a comment.