I have the code snippet below that I think makes an array of double and a variable of type double.
I do not understand what the ?
is doing.
double? [] precips =
{
tblswatwaprecipitation.January,
tblswatwaprecipitation.February,
tblswatwaprecipitation.March,
tblswatwaprecipitation.April,
tblswatwaprecipitation.May,
tblswatwaprecipitation.June,
tblswatwaprecipitation.July,
tblswatwaprecipitation.August,
tblswatwaprecipitation.September,
tblswatwaprecipitation.October,
tblswatwaprecipitation.November,
tblswatwaprecipitation.December
};
double? precipTotal = null;