最佳答案
如何将多行字符串拆分为多行?
我知道这条路
var result = input.Split("\n\r".ToCharArray(), StringSplitOptions.RemoveEmptyEntries);
看起来有点丑,而且没有空行。有更好的解决方案吗?