RealtimeAnalysis.FormPRM.Get_Pmin C# (CSharp) Method

Get_Pmin() private method

private Get_Pmin ( DataTable dt ) : double
dt System.Data.DataTable
return double
        private double Get_Pmin(DataTable dt)
        {
            double period = double.MaxValue;
            foreach (DataRow dr in dt.Rows)
                period = Math.Min(double.Parse(dr["Period"].ToString()), period);

            return period;
        }
        [Obsolete]