show/hide this revision's text 2

@jeff

IMHO yours seems a little long. However it does seem a little more robust with support for "yesterday" and "years". But in my experience when this is used the person is most likely to view the content in the first 30 days. It is only the really hardcore people that come after that. So that is why I usually elect to keep this short and simple.

This is the method I am currently using on one of my websites. This only returns a relative day, hour, time. And then the user has to slap on "ago" in the output.

public static string ToLongString(this TimeSpan time)
{
	string output = String.Empty;

	if (time.Days > 0)
		output += time.Days + " days ";

	if ((time.Days == 0 || time.Days == 1) && time.Hours > 0)
		output += time.Hours + " hr ";

	if (time.Days == 0 && time.Minutes > 0)
		output += time.Minutes + " min ";

	if (output.Length == 0)
		output += time.Seconds + " sec";

	return output.Trim();
}
show/hide this revision's text 1

This is the method I am currently using on one of my websites. This only returns a relative day, hour, time. And then the user has to slap on "ago" in the output.

public static string ToLongString(this TimeSpan time)
{
	string output = String.Empty;

	if (time.Days > 0)
		output += time.Days + " days ";

	if ((time.Days == 0 || time.Days == 1) && time.Hours > 0)
		output += time.Hours + " hr ";

	if (time.Days == 0 && time.Minutes > 0)
		output += time.Minutes + " min ";

	if (output.Length == 0)
		output += time.Seconds + " sec";

	return output.Trim();
}