I have tried out the demos at
http://www.tangiblesoftwaresolutions.com/
for code snippets.
Intrestingly in VB.net existing - in comparision to VB6 - more keywords. Some could also be interesting for Jabaco.
Currently I have found two intresting one.
Currently there existing the keywords
And ' in C/C++/C#/Java: &
Or ' in C/C++/C#/Java: |
(bit-wise operators)
But in VB.net existing additional
AndAlso ' in C/C++/C#/Java: &&
OrElse ' in C/C++/C#/Java: ||
(logic operators)
But where VB6 using the bitwise-one in logical context.
And Jabaco compiles a
|
Jabaco Source
|
1
2
3
|
If a=3 And b=4 Then
c = 1
End If
|
to
|
Jabaco Source
|
1
2
3
|
if (((a != 3 ? 0 : 1) & (b != 4 ? 0 : 1)) != 0) {
c = 1;
}
|