Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public static System.Int32 TimeToInt(System.TimeSpan Time)
- {
- return (System.Int32)(Time.Ticks / 10000);
- }
- public static System.TimeSpan IntToTime(System.Int32 Time)
- {
- return new System.TimeSpan((System.Int64)Time * 10000);
- }
Advertisement
Add Comment
Please, Sign In to add comment