I\'ve been trying to use decimal values as params for a field attribute but I get a compiler error.
I found this blog post link saying it wasn\'t possible in .NET to
You can use the following constructor. When you have a decimal literal in C# code, the C# compiler emits a call to this constructor.
Decimal(Int32, Int32, Int32, Boolean, Byte)
Edit: I know this is not convenient.