C#
Icon_酱
hold on, pain ends
展开
-
C#学习笔记之:构造函数
以下为含参和不含参的构造方法的例子代码:class Program {//*******************Part One Begin*******************************// public string Name; public int Age; public Program() ...原创 2018-09-14 14:03:56 · 974 阅读 · 0 评论 -
C#:将文本分解为单词
static void Main(string[] args){ var text = "Youth is not a time of life"; string[] words = Regex.Split(text,@"\W+");//这句代码就是将文本转为单词,但是需要添加这一句引用 using System.Text.RegularExpressions; va...原创 2018-09-21 10:08:37 · 1006 阅读 · 0 评论