Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of System.Half to the value of the specified single-precision floating-point number.
 /// </summary>
 /// <param name="value">The value to represent as a System.Half.</param>
 public Half(float value)
 {
     this = HalfHelper.SingleToHalf(value);
 }