In our company we use ints to store Date values. The logic behind it is quite simple. The int contains the number of days since 1.1.1970. We have our own functions to convert these ints to strings at runtime.
My problem is, that I haven't found a way to tell the debugger to display these values as Dates (strings). I only see 40345 and I have to use an external tool to convert that to a Date. That makes me sick and slows down debugging.
I have already tried to call the convert function in the watchlist, but it only shows a lot of errors.
Please help me, I'm so tired of guessing Date Values.