vote up 0 vote down star

I have a string array in C# 3.5:

string [] times = new[] {“08:00 am” , “10:00 am”, “120”} ;

I would like to create indexes to times: StartTime, EndTime , ElaspsedTime so that when I code:

StartTime= “09:00 am” ; 
EndTime= “11:00 am” ;

then times[0] is set to “09:00 am” , etc.

I could create 3 methods:

private void StartTime(string time)
{    times[0] = time;  }
private void EndTime(string time)
{    times[1] = time;  }
private void ElapsedTime(string time)
{    times[2] = time;   }

and code

StartTime("09:00");

but is there a simpler way to do it?

flag

55% accept rate
2  
Why are you using an array when you should really have this in a class itself with private members? – Daniel A. White Jul 21 at 14:36

6 Answers

vote up 20 vote down check

What you should really do is create a new class to do this. Make the two times properties.

And the time elapsed is a function of the start and end times.

class Time 
{
    public DateTime StartTime{ get; set; }
    public DateTime EndTime{ get; set; }

    public String[] ToStringArray() 
    {
        String[] ret = new String[3];
        ret[0] = StartTime.ToString();
        ret[1] = EndTime.ToString();
        ret[2] = ElapsedTime().ToString();
        return ret;
    }

    public TimeSpan ElapsedTime() 
    {
        return EndTime.subtract(StartTime);
    }
}
link|flag
+1 show him a public property that returns all 3 in a string array and then it would be the perfect solution :) – Stan R. Jul 21 at 14:41
Wow, +85 rep for that :) – Matt Howells Jul 21 at 14:42
Yup. And I hardly know C#. – jjnguy Jul 21 at 14:43
@Matt: I would say it was well earned (and it's 95 when I write this). – Fredrik Mörk Jul 21 at 14:43
1  
I added a return statement to ToStringArray(), I assume this is still necessary in C#3.0, but please remove if I am wrong – Patrick McDonald Jul 21 at 14:51
show 5 more comments
vote up 3 vote down

I don't know it it is simpler, but I would suggest taking the hard index references out of your code and replace them with constants, to make easier to maintain if the order of elements in the array would change in the future:

private const int START_TIME = 0;
private const int END_TIME = 1;
private const int ELAPSED_TIME = 2;

Then you will also get more readable code:

times[END_TIME] = time;

Unless you want to be more object oriented, in which case you should follow jjnguy's advice.

link|flag
+1 for a good way to make his existing code better. – jjnguy Jul 21 at 14:50
vote up 2 vote down

To add to jjnguy's answer, you should really have a class that holds the 3 properties, and then if you need an array you could have a public property that just has a getter and returns the 3 different times in a string array.

link|flag
1  
I added that functionality to my example. – jjnguy Jul 21 at 14:48
vote up 0 vote down

Use a dictionary. See here.

link|flag
vote up 0 vote down

How about an extension method?

public static class Extensions
{
   public static void StartTime(this string[] array, string value)
   {
      array[0] = value;
   }
}
link|flag
vote up 0 vote down

You can do this using a dictionary.

e.g.

Dictionary<string, string> times = new Dictionary<string, string>();
times.Add("StartTime","09:00am");
times.Add("EndTime","11:00am");
link|flag

Your Answer

Get an OpenID
or

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