Skip to content

Instantly share code, notes, and snippets.

@JT5D
Forked from unitycoder/csharp-date-time-formatting.cs
Last active August 29, 2015 14:23
Show Gist options
  • Select an option

  • Save JT5D/8e22f79697454fdd2c25 to your computer and use it in GitHub Desktop.

Select an option

Save JT5D/8e22f79697454fdd2c25 to your computer and use it in GitHub Desktop.
// example: Debug.Log(FormatTime((float)Time.time));
string FormatTime(int t)
{
return System.TimeSpan.FromSeconds(t).ToString();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment