So i have tried some other solutions from here but none have worked. My current method is trying to use the TimeSpan method:
unixtime is an int, contains '1502557200'
var test_date = TimeSpan.FromSeconds(unixtime);
test_date became '{17390.17:00:00}'
What am I doing wrong? I was trying to avoid creating a method to handle the conversion, and just trying to do it inline,
Thankyou