这个代码该怎么写?
--------------------编程问答--------------------string[] strs = File.ReadAllLines(path, Encoding.Default)
.Select(x => x.Split(' ', StringSplitOptions.RemoveEmptyEntries))
.Select(x => (x[0].Length > 17 ? x[0].SubString(0, 17) + "..." : x[0]) + "|" + x[1])
.ToArray();
补充:.NET技术 , C#