Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm sure this must be simple, but I can't figure out how to word it correctly in Google...

I have a config which has a field:

TimeToPoll="1d"

Now I want to do something like:

TimeSpan.Parse(TimeToPoll);

Returning a timespan of one day.

In C#

EDIT: I'm looking for a method which allows parse of "1d" as well as "1s" or "1y" etc. Is this possible?

Meaning:

     "1d" parses to {1.00:00:00}
     "1h" parses to {0.01:00:00}
     "1m" parses to {0.00:01:00}
     "1s" parses to {0.00:00:01}
share|improve this question
My apologies, I have updated. – Matthew Canty Apr 18 '12 at 11:11
why d in TimeToPoll – Marshal Apr 18 '12 at 11:15
check this link : msdn.microsoft.com/en-us/library/system.timespan.days.aspx – anony Apr 18 '12 at 11:54
1  
Just translate the string in the setting to a format string that TimeSpan.TryParse() accepts. Or change the setting string itself. Watch out of .NET dependency, TryParse() is only available in .NET 4. – Hans Passant Apr 18 '12 at 14:07
Okay thanks. I may figure out a work around for this. As it would make the config much simpler to implement. – Matthew Canty Apr 18 '12 at 14:13

3 Answers

up vote 1 down vote accepted

The d is not needed and is the reason your parse fails.

var oneDay = TimeSpan.Parse("1");

Update:

For what you are looking to do, there is no built in support. You would need to write your own parser.

share|improve this answer
This would need - TimeSpan.FromDays(double.Parse("1")); – Matthew Canty Apr 18 '12 at 13:22
@MatthewCanty - I don't follow. What I have written is valid. – Oded Apr 18 '12 at 13:26
Ah, so it does. Sorry. I just didn't think something so ambiguous could happen. I assumed it would have returned the smallest possible value. – Matthew Canty Apr 18 '12 at 13:29

You should store your values in your config file in one of the formats that TimeSpan.Parse can work with. There are several samples on that page.

EDIT: The examples are in the code toward the bottom of the page.

share|improve this answer

This is my resolution:

    public static TimeSpan ConvertToTimeSpan(this string timeSpan)
    {
        var l = timeSpan.Length - 1;
        var value = timeSpan.Substring(0, l);
        var type = timeSpan.Substring(l, 1);

        switch (type)
        {
            case "d": return TimeSpan.FromDays(double.Parse(value));
            case "h": return TimeSpan.FromHours(double.Parse(value));
            case "m": return TimeSpan.FromMinutes(double.Parse(value));
            case "s": return TimeSpan.FromSeconds(double.Parse(value));
            case "f": return TimeSpan.FromMilliseconds(double.Parse(value));
            case "z": return TimeSpan.FromTicks(long.Parse(value));
            default: return TimeSpan.FromDays(double.Parse(value));
        }
    }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.