H
Harry Simpson
I've pretty much converted Daniel Moth's AsyncCalcPiCF project to VB.net but
for this one gotcha:
b = b>>1;
converts to
b = Machine.Shift.Right(b,1)
and my compiler burps on the Machine as not be declared.
What could be the CF VB.NET translation?
TIA
Harry
for this one gotcha:
b = b>>1;
converts to
b = Machine.Shift.Right(b,1)
and my compiler burps on the Machine as not be declared.
What could be the CF VB.NET translation?
TIA
Harry