lx
2025-07-18 fe5bb447bbc9d325246cf99b980556af62955254
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace ErrorAnalysis.UI.Utility
{
    public class UnitConvert
    {
        public static double Ft2M(double val) => val / 3.281;
 
        public static double M2Ft(double val) => val * 3.281;
 
        public static double FtHr2MMin(double val) => val / 3.281 / 60;
 
        public static double MHR2MMin(double val) => val /60;
 
        public static double MMin2FtHr(double val) => val * 3.281 * 60;
    }
}