Is there a default method defined in .Net for C# to remove all the elements within a list which are null?
null
List parame
The RemoveAll method should do the trick:
parameterList.RemoveAll(delegate (object o) { return o == null; });