我有一个DataTable
填充了一些列值。我想将列值从一个单位转换为另一个单位。
DataTable Columns(Name,Height,Width)
例如:英寸到米,米到厘米等。
Id UnitName
1 Inches
2 Millimeters
3 Fractions
4 Decimal
5 Feet
6 Centimeters
7 Meters
private string Convert(string strToConvert, int from, int to)
{
//some code here
return strToConvert;
}