SGP.NET icon indicating copy to clipboard operation
SGP.NET copied to clipboard

System.ArgumentOutOfRangeException: The added or subtracted value results in an un-representable DateTime. (Parameter 't')

Open wxyer opened this issue 1 year ago • 0 comments

sometime compute wont wrong,i position the code `

        var before = maxElTime - deltaTime;

        if (clipToStartTime) // ensure before is clipped for max elevation search
        {
            before = start > before ? start : before;
        }

` should alert the maxElTime is after DateTime.MinValue;

wxyer avatar Mar 29 '24 09:03 wxyer