File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ public override int GetHashCode()
144
144
145
145
public override string ToString ( )
146
146
{
147
- return CubicMeterPerSecond + " " + UnitSystem . Create ( CultureInfo . CurrentCulture ) . GetDefaultAbbreviation ( Unit . CubicMeterPerSecond ) ;
147
+ return string . Format ( "≈{0:0.##} {1}" , CubicMeterPerSecond , UnitSystem . Create ( ) . GetDefaultAbbreviation ( Unit . CubicMeterPerSecond ) ) ;
148
148
}
149
149
}
150
150
}
Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ public override int GetHashCode()
144
144
145
145
public override string ToString ( )
146
146
{
147
- return RevolutionsPerSecond + " " + UnitSystem . Create ( CultureInfo . CurrentCulture ) . GetDefaultAbbreviation ( Unit . RevolutionsPerSecond ) ;
147
+ return string . Format ( "≈{0:0.##} {1}" , RevolutionsPerSecond , UnitSystem . Create ( ) . GetDefaultAbbreviation ( Unit . RevolutionsPerSecond ) ) ;
148
148
}
149
149
}
150
150
}
You can’t perform that action at this time.
0 commit comments