Hi all
Look that sub in the class
C# Code:
class cone { float ht, rd; public void set(float h, float r) { ht = h; rd = r; } }
C# Code:
cone c1; c1=new cone(); c1.set(12.34,23.0);
ERROR HERE c1.set(12.34,23.0);
CAN NOT CONVERT DOUBLE TO FLOAT. WHY??
|
Results 1 to 5 of 5
Thread: [RESOLVED] [2.0] FloatThreaded View
|
Click Here to Expand Forum to Full Width |