We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ddd6f7e commit 20478fcCopy full SHA for 20478fc
1 file changed
README.md
@@ -104,17 +104,17 @@ John Doe's Cars
104
```csharp
105
Car car = new Car
106
{
107
- Price = 50000m
+ Price = 50000
108
};
109
110
-string result = car.Map("{{ Price:#,##0 }} | {{ Price:N5 }}");
+string result = car.Map("{{ Price:#,##0 }} | {{ Price:N2 }}");
111
112
Console.WriteLine(result);
113
```
114
115
**Output:**
116
117
-50,000 | 50,000.00000
+50,000 | 50,000.00
118
119
---
120
0 commit comments