Is there a default method defined in .Net for C# to remove all the elements within a list which are null?
null
List parame
I do not know of any in-built method, but you could just use linq:
parameterList = parameterList.Where(x => x != null).ToList();