AcTools.LapTimes.LapTimeEntry.LapTimeEntry C# (CSharp) Метод

LapTimeEntry() публичный Метод

public LapTimeEntry ( string sourceId, string carId, string trackId, System.DateTime entryDate, System.TimeSpan lapTime ) : System
sourceId string
carId string
trackId string
entryDate System.DateTime
lapTime System.TimeSpan
Результат System
        public LapTimeEntry(string sourceId, string carId, string trackId, DateTime entryDate, TimeSpan lapTime) {
            Source = sourceId;
            CarId = carId;
            LapTime = lapTime;
            TrackId = trackId;
            TrackAcId = trackId.Replace('/', '-');
            EntryDate = entryDate;
        }

Same methods

LapTimeEntry::LapTimeEntry ( string sourceId, string carId, string trackId, string layoutId, System.DateTime entryDate, System.TimeSpan lapTime ) : System