Answers for "how to validate decimal number with percision of (25, 4) iin c#"

C#
0

how to validate decimal number with percision of (25, 4) iin c#

Two Decimal Points
[RegularExpression(@"^\d+(\.\d{1,2})?$")]
This regular expression will make sure that the property has at most two decimal places.

Max 18 digits
[Range(0, 9999999999999999.99)]
Posted by: Guest on April-01-2022

Code answers related to "how to validate decimal number with percision of (25, 4) iin c#"

C# Answers by Framework

Browse Popular Code Answers by Language