I have the following code:
double ticketPrice;
LoadOperation loGetTickets = ticketClass.loadTickets();
loGetTickets.Completed += (s, args) =>
{
foreach (Web.Ticket tt in ticketClass.getContext())
{
if (tt.bookingId == data.bookingId)
{
pView.lblTicketAmount.Content = "£" + tt.ticketPrice;
MessageBox.Show("Price: " + tt.ticketPrice);
ticketPrice = Convert.ToDouble(tt.ticketPrice);
pView.lblTicketName.Content = tt.ticketName;
break;
}
}
}; double subTotal = ticketPrice + ticketQuantity;
When I do run it, I get the error: Use of unassigned local variable 'ticketPrice'
As you can see it does get assigned with a value from the loop.
If I do use:
double ticketPrice = 0.0;
The error goes but then the value stays at 0.0, but I don't understand because the messagebox comes up every time and outputs the value, so I would assume the value of tt.ticketPrice is populating ticketPrice
Can anyone help me on this matter.
Thanks
ticketPrice. – Jon of All Trades May 2 '11 at 21:34tt.ticketPricehas no relation toticketPrice(apart from similar names). – rsenna May 2 '11 at 21:42