You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Errantline should have been this:publicintTest3=0x7C;
Details
Product in use: both
Version in use: 7.4.0.0 (what I saw on the website footer)
Did you see it working in a previous version, which? no
Any other relevant information to the issue, or your interest in contributing a fix.
Another non-critical, but related issue is observed on the following:
&Hffff
Gets converted to this with a capital letter on the last character for some reason:
0xfffF
The text was updated successfully, but these errors were encountered:
I just found a workaround. Add an I suffix (i as in integer) and it converts properly:
Public Test3 as Integer = &H7CI
converts to this:
public int Test3 = 0x7C;
Input code
Erroneous output
Expected output
Details
Another non-critical, but related issue is observed on the following:
&Hffff
Gets converted to this with a capital letter on the last character for some reason:
0xfffF
The text was updated successfully, but these errors were encountered: