I have created a class for handling Unit Conversion in C#. It is not working as it should only returning strings.
Here is the class:
using System; us
You can't use float/double with enums. You may have to define constants.
public const double KiloGrams = 0.001;