I want to have a sum of all intervals , but I write this code I have an error stating: use of unassigned local variable total ?

enter TimeSpan total;
foreach (var grp in query)
{
  TimeSpan interval = TimeSpan.FromMinutes(grp.Minuut); 
  TimeSpan intervalH = TimeSpan.FromHours(grp.Sum);

  interval = interval + intervalH;
  total += interval;
  string timeInterval = interval.ToString();   
  dataGridView2.Rows.Add(i++, grp.Id, grp.Sum, grp.Minuut,timeInterval);
}
link|improve this question

69% accept rate
Your last edit destroyed your formatting and the enter TimeSpan part makes no sense. Can you revert or fix that? – CodeInChaos Oct 24 '11 at 11:55
declare and initialize 'total' before adding 'interval' to it – alex Oct 24 '11 at 12:40
feedback

4 Answers

Start with:

TimeSpan total = TimeSpan.Zero;

Incrementing a variable that has no value makes no sense. So it's only natural for this to be a compiler error.

While fields get initialized to 0, local variables must be assigned to before they are first read. In your program total += interval; reads total in order to increment it. In the first iteration of your loop it thus wouldn't have been assigned a value.

link|improve this answer
+1 for comparing with fields, which are initialized. – George Duckett Oct 24 '11 at 11:45
feedback
total += interval;

Is wrong when total has no value assigned at all... What are you going to add interval too?

link|improve this answer
I just want to have a total of all rows in my datagridview , the column is filled with a timespan. – Nick_BE Oct 24 '11 at 11:43
@Nick_BE Just initialize it to 0. Or whatever the default C'tor is. – FailedDev Oct 24 '11 at 11:44
feedback

No initial value is ever assigned to total. You have to assign a value before you use it.

link|improve this answer
TimeSpan total = new TimeSpan(0); is what I needed – Nick_BE Oct 24 '11 at 11:46
feedback

You should initialize total value before use

 TimeSpan total = new TimeSpan();,

then code should work.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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