with 2.6 I have a very compile strange error:
Code: Select all
error XS0218: In order for 'XSharp.__Usual.operator &(XSharp.__Usual, XSharp.__Usual)' to be applicable as a short circuit operator, its declaring type 'USUAL' must define operator true and operator false
Code: Select all
while ! oHallo:EoF .and. oHallo:FieldGet( "what" ) == ""
Code: Select all
function Start( ) as void
local oHallo as DbServer
System.Console.WriteLine("Hello x#!")
oHallo := DbServer{ "c:temphallo.dbf" }
oHallo:GoTop()
while ! oHallo:EoF .and. oHallo:FieldGet( "what" ) == ""
oHallo:Skip()
end
oHallo:Close()
return
Code: Select all
while oHallo:EoF == false .and. oHallo:FieldGet( "what" ) == ""
I have a lot of similar code in my applications....
Please find a complete sample attached.
Wolfgang