I keep getting this error for annualRate, monthlyCharge, and lateFee. using System; using System.Collections.Generic; using System.Linq; using …
c# unassigned-variableSeems there is no way to assign NULL (either an "unassigned value" to TDateTime variables. The only way I've imagined …
delphi datetime null unassigned-variableI am reading connection strings from my App.config file and for that i have following code. try { string[] dbnames; …
c# .net arrays c#-4.0 unassigned-variableAfter searching around I cant seem to locate why the C# compiler is complaining that the local variable dteDest is …
c# tryparse unassigned-variableI'm doing the following block of code and the compiler is complaining about unassigned local variables and could use some …
c# unassigned-variableI have a piece of code that iterates over XML attributes: string groupName; do { switch (/* ... */) { case "NAME": groupName = thisNavigator.Value; …
c# string unassigned-variable