Hi,
I think there should be no implicit type conversions in MSElang.
"
var
 f1: float;
 i1: integer;
 c1: cardinal;
 by1: byte;
begin
 f1:= 1;              //error
 f1:= 1.0;            //ok
 f1:= float(1);       //ok
 i1:= 1;              //ok
 by1:= 1;             //ok
 i1:= by1;            //error
 i1:= integer(by1);   //ok
 i1:= by1 + 1;        //error
 i1:= integer(by1+1); //ok, 8bit addition
 i1:= integer(by1)+1; //ok, 32 bit addition
end;
"
Opinions?

Martin

------------------------------------------------------------------------------
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET, & PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831&iu=/4140/ostg.clktrk
_______________________________________________
mseide-msegui-talk mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk

Reply via email to