Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ReturnStringTime(val)
- {
- static string[30];
- return (string = (60000 > val >= 1000) ? ("Seconds") : (60000 * 60 > val >= 60000) ? ("Minutes") : (1000 > val >= 0) ? ("Miliseconds") : ("Days"), string);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement