CSharp examples for System:DateTime Calculate
Returns a DateTime object for the number of ticks
using System.Collections; using System;//www . java 2 s.c om public class Main{ /// <summary> /// Returns a DateTime object for the number of ticks /// </summary> public static DateTime FromTicks(long ticks) { return new DateTime(ticks); } }