Conver Kg To Lb
using System; using System.Collections.Generic; using System.Linq; using System.Web; public static class DataConversion { public static double ConverKgToLb(double kg) { return (kg * 2.2046226); } }