| | |
| | | var textBuilder = OperationTimeHepler.textBuilder;
|
| | | textBuilder.Length = 0;
|
| | | textBuilder.Append(string.Format(" {0}:{1}", joinStartHour.ToString("D2"), joinStartMinute.ToString("D2")));
|
| | | if (startDate != endDate)
|
| | | {
|
| | | textBuilder.Append(" - ");
|
| | | textBuilder.Append(string.Format(" {0}:{1}", joinEndHour.ToString("D2"), joinEndMinute.ToString("D2")));
|
| | | }
|
| | | textBuilder.Append(" - ");
|
| | | textBuilder.Append(string.Format(" {0}:{1}", joinEndHour.ToString("D2"), joinEndMinute.ToString("D2")));
|
| | | return textBuilder.ToString();
|
| | | }
|
| | |
|
| | |
| | | textBuilder.Length = 0;
|
| | | textBuilder.Append(startDate.ToDisplay(false));
|
| | | textBuilder.Append(string.Format(" {0}:{1}", joinStartHour.ToString("D2"), joinStartMinute.ToString("D2")));
|
| | | if (startDate != endDate)
|
| | | {
|
| | | textBuilder.Append(" - ");
|
| | | textBuilder.Append(endDate.ToDisplay(false));
|
| | | textBuilder.Append(string.Format(" {0}:{1}", joinEndHour.ToString("D2"), joinEndMinute.ToString("D2")));
|
| | | }
|
| | | textBuilder.Append(" - ");
|
| | | textBuilder.Append(endDate.ToDisplay(false));
|
| | | textBuilder.Append(string.Format(" {0}:{1}", joinEndHour.ToString("D2"), joinEndMinute.ToString("D2")));
|
| | | return textBuilder.ToString();
|
| | | }
|
| | |
|