Hi,
May I know why this statement produce warning : /The type conversion from 'int64' to 'int' loses range/
return time2StrHMS(DateTimeUtil::getDifference(this.DateTimeAnswered, this.DateTimeExecuted));
What I know now is time2StrHMS() method is need parameter with int type. Does it mean DateTimeUtil returns int64 ? Then should I convert it again ?
thanks