Blazor InputNumber unsigned numbers
Hey, do anyone know if there's a way to use unsigned numbers on Blazor's
InputNumber
components? I'm receiving this error.
3 Replies
InputNumber Class (Microsoft.AspNetCore.Components.Forms)
An input component for editing numeric values. Supported numeric types are Int32, Int64, Int16, Single, Double, Decimal.
no
either use a signed type or subclass your own
InputBase<T>
typethank you