Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Forms/PropertyClasses/MacroStabilityInwardsStochasticSoilProfileProperties.cs =================================================================== diff -u -r7603662fcb3445b3b83461da1026334009c4c54c -rf5f026e9a94c76cae0674fb6045a54269e2890c0 --- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Forms/PropertyClasses/MacroStabilityInwardsStochasticSoilProfileProperties.cs (.../MacroStabilityInwardsStochasticSoilProfileProperties.cs) (revision 7603662fcb3445b3b83461da1026334009c4c54c) +++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Forms/PropertyClasses/MacroStabilityInwardsStochasticSoilProfileProperties.cs (.../MacroStabilityInwardsStochasticSoilProfileProperties.cs) (revision f5f026e9a94c76cae0674fb6045a54269e2890c0) @@ -22,7 +22,6 @@ using System; using System.Collections.Generic; using System.ComponentModel; -using System.Globalization; using System.Linq; using Core.Common.Base.Data; using Core.Common.Gui.Attributes; @@ -118,12 +117,12 @@ [ResourcesCategory(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.Categories_General))] [ResourcesDisplayName(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.StochasticSoilProfile_Bottom_DisplayName))] [ResourcesDescription(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.StochasticSoilProfile_Bottom_Description))] - public string Bottom + public RoundedDouble Bottom { get { double bottomValue = (data.SoilProfile as MacroStabilityInwardsSoilProfile1D)?.Bottom ?? double.NaN; - return new RoundedDouble(2, bottomValue).Value.ToString(CultureInfo.CurrentCulture); + return new RoundedDouble(2, bottomValue); } }