string q1 = "What Company during the {0}, {1},{2},{3} tax years?"
q1 = string.Format(q1, model.CurYear, model.Year2, model.Year3, model.Year4);
Here comes I may have year2,year3,year4 or not it may contain null. so is there any scope of having optional parameters. Error message:I am getting you are having more arguments list,so is there any solution.