Search
Get Started
C
C#
•
3y ago
LuckShiba
Blazor InputNumber unsigned numbers
Hey
, do anyone know if there
's a way to use unsigned numbers on Blazor
's
InputNumber
InputNumber
components
? I
'm receiving this error
.
C#
Join
We are a programming server aimed at coders discussing everything related to C# (CSharp) and .NET.
61,010
Members
View on Discord
Was this page helpful?
Yes
No
J
JakenVeina
•
11/15/23, 5:17 AM
https://learn.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.components.forms.inputnumber-1?view=aspnetcore-7.0
InputNumber Class (Microsoft.AspNetCore.Components.Forms)
An input component for editing numeric values
. Supported numeric types are Int32
, Int64
, Int16
, Single
, Double
, Decimal
.
J
JakenVeina
•
11/15/23, 5:18 AM
no
J
JakenVeina
•
11/15/23, 5:18 AM
either use a signed type or subclass your own
type
L
LuckShiba
OP
•
11/15/23, 8:17 PM
thank you
InputBase<T>
InputBase<T>