摘要: System.Diagnostics.Process.Start("http://www.xxx.com/") 阅读全文
posted @ 2022-09-25 00:53 素心如何天上月 阅读(33) 评论(0) 推荐(0)
摘要: 1.从index截取到字符串结束: string.Substring(index) 2.从index截取length长度的字符串: string.Substring(index,length) 3.查找字符串最先出现的index: //如果没找到,会返回-1 int index =string.In 阅读全文
posted @ 2022-09-25 00:30 素心如何天上月 阅读(150) 评论(0) 推荐(0)