CSharp examples for System:DateTime Second
Get Total Microseconds
using System;// w ww. j a v a 2 s . c om public class Main{ /// <summary> /// /// </summary> /// <param name="DateTime"></param> /// <returns></returns> public static long GetTotalMicroseconds(this DateTime DateTime) { return DateTime.Ticks / 10; } }