Пример #1
0
 private string? UpdateTip(int index)
 {
     switch (index)
     {
         case 2: // Storyline Completed Time
             var seconds = DateUtil.GetSecondsFrom2000(CAL_AdventureStartDate.Value, CAL_AdventureStartTime.Value);
             return DateUtil.ConvertDateValueToString(SAV.GetRecord(index), seconds);
         default:
             return null;
     }
 }