/// <summary> /// Initializes a new instance of the <see cref="Half" /> structure. /// </summary> /// <param name = "value">The floating point value that should be stored in 16 bit format.</param> public Half(float value) { this.value = HalfUtils.Pack(value); }