I am needing to transfer some logs which were timestamped in ticks to an XML document. I would prefer the timestamps to be more Specific such as \"July 14, 2009 10:18:04 pm\
Assuming 'logText' is the ticks, try:
DateTime logDate = new DateTime(logText);
If logText is a string, you can convert it to long (Int64) and use this constructor:
logText
DateTime date = new DateTime(long.Parse(logText));