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; }            
        You can't vote. Please authorize!
             
                                                                     
             
            
 I like this feedback
            I like this feedback        
Replies have been locked on this page!