1 |
using System; |
2 |
using System.Collections.Generic; |
3 |
using System.Linq; |
4 |
using System.Text; |
5 |
|
6 |
namespace libWin32.Win32.NumericConversion.IEEE754 |
7 |
{ |
8 |
public interface I_ieee754FloatingPointConverter |
9 |
{ |
10 |
float Float { get; set; } |
11 |
uint HexFloat { get; set; } |
12 |
} |
13 |
} |