wasSharp

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 33  →  ?path2? @ 36
/CSV.cs
@@ -62,7 +62,7 @@
.GroupBy(q => q.p / 2, q => q.o)
.Select(o => o.ToArray())
.TakeWhile(o => o.Length % 2 == 0)
.Where(o => !string.IsNullOrEmpty(o[0]) || !string.IsNullOrEmpty(o[1]))
.Where(o => !string.IsNullOrEmpty(o[0]))
.Select(o => new KeyValuePair<string, string>(o[0], o[1]));
}