about the MyFixedPoint class
Submitted
The MyFixedPoint class can have:
public static implicit operator MyFixedPoint(long v);
public static implicit operator long(MyFixedPoint v);
public static implicit operator MyFixedPoint(long v){
MyFixedPoint VL = new MyFixedPoint(); VL.RawValue = v;
return VL;
}public static implicit operator long(MyFixedPoint v)
{ return v.RawValue; }
I like this feedback
Replies have been locked on this page!