Fixed Bin.Utilization

This commit is contained in:
aj
2018-06-02 20:24:38 -04:00
parent 2d0494731d
commit e5f919a3e8

View File

@@ -33,7 +33,7 @@ namespace CutToLength
public double Utilization
{
get { return (UsedLength / Length * 100.0); }
get { return UsedLength / Length; }
}
public override string ToString()