wasSharp

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