Hi,
Is there a default method defined in .Net for C# to remove all the elements within a list which are NULL?
List<EmailParameterClass> parameterList = new List<EmailParameterClass>{param1, param2, param3...};
Lets say some of the paramters are NULL; I cannot know in advance and I want to remove them from my list so that it only contains parameters which are not null.