You are viewing a single comment's thread.

view the rest of the comments →

0
16

[–] miro 0 points 16 points (+16|-0) ago  (edited ago)

Looks like it! Also:

                if (days.Equals(52))
                {
                    result = "1 dog year";
                }
                if (days.Equals(14))
                {
                    result = "1 fortnight";
                }
                if (Math.Round(span.TotalSeconds, 2).Equals(1.21))
                {
                    result = "1 microfortnight";
                }

0
6

[–] ChillyHellion [S] 0 points 6 points (+6|-0) ago 

Fun stuff :) thanks, @miro!