c#使用Split分割换行符 \r\n

c# 使用Split分割 换行符,方法如下(其余方法有空再添加):
 
string str = "aa" + "\r\n" + "bb";
 
string[] ss = str.Split(new string[] { "\r\n" }, StringSplitOptions.None);
posted @ 2016-12-21 09:02  野狼谷  阅读(13254)  评论(0编辑  收藏  举报