There is a string array mas, the data of which must be saved in a txt file .
I delete empty strings with this method: mas.Where(n => !string.IsNullOrEmpty(n));
but in the end both full and empty lines are saved.
What is required for complete removal?