What's the type for "half" (binary16) in C#?
.NET 5 includes System.Half
to represent the IEEE 754-2008 binary16
floating point data type. There's no C# type for it (yet), though.
Prior to .NET 5.0, .NET doesn't support "half" as a basic type. However, there are libraries providing conversion routines.