Well, you could either do this:
coll = coll ?? new List<string>();
Or you would need to implement a ModelBinder that will create an empty list instead of returning null. E.g.:
public EmptyListModelBinder<T> : DefaultModelBinder
{
public override object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
{
var model = base.BindModel(controllerContext, bindingContext) ?? new List<T>();
}
}
And wired up as:
ModelBinders.Binders.Add(typeof(IList<string>), new EmptyListModelBinder<string>());
I'd probably stick with the argument check though...