http://topic.csdn.net/u/20111128/19/ac88f149-d865-48a7-9ffc-b4973f4a565a.html
不知道这个是不是你要的方法,
你也可以插入完数据后用delete table where 字段1 is null or 字段2 is null删除空行
System.IO.File.WriteAllLines("H:\\src.txt", from line in System.IO.File.ReadAllLines("H:\\src.txt")
where !string.IsNullOrEmpty(line.Trim())
select line);