We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7683b8 commit af6a79fCopy full SHA for af6a79f
Samples/UnitConverter.Wpf/UnitConverter.Wpf/MainWindowDesignVM.cs
@@ -30,8 +30,8 @@ public MainWindowDesignVm()
30
31
public string FromHeader { get; } = "Value [cm]";
32
public string ToHeader { get; } = "Result [dm]";
33
- public QuantityValue FromValue { get; set; } = 14.5;
34
- public QuantityValue ToValue { get; } = 1.45;
+ public QuantityValue FromValue { get; set; } = 14.5m;
+ public QuantityValue ToValue { get; } = 1.45m;
35
36
public ICommand SwapCommand { get; } = new RoutedCommand();
37
0 commit comments