It sounds like your object model isn't correctly factored. What you probably want to do is abstract Unit and Quantity into another object and then you can override ToString for that. This has the advantage of keeping dependent values together, and allowing you to implement things such as conversions between units in the future (e.g. conversion from inchest to feet etc.), e.g.
public struct Measure
{
public Measure(string unit, decimal quantity)
{
this.Unit = unit;
this.Quantity = quantity;
}
public string Unit { get; private set; }
public decimal Quantity { get; private set; }
public override string ToString()
{
return string.Format("{0} {1}", this.Quantity, this.Unit);
}
}
public class Item
{
public string Name { get; set; }
public Measure Measure { get; set; }
public override string ToString()
{
return string.Format("{0}: {1}", this.Name, this.Measure);
}
}
Note that I made Measure a struct here as it probably has value semantics. If you take this approach you should make it immutable and override Equals/GetHashCode as is appropriate for a struct.