异常语句
try :尝试
try
{
//要包括起来的可能有错误的代码
}
catch (Exception ex)//抓获错误
{
throw ex; //抛出错误异常
console.writeline ("错误内容"+ex );
}
finally
{
console.write("");
}
类 类型 : class类型 : 用户自定义类型
String : 处理字符串
DateTime : 处理时间
Random : 生产随机数
Math ; 处理数字的
s.Trim(); //去除空格
s.TrimStart(); //去除前空格
s.TrimEnd(); //去除后空格
s.ToLower(); //转换为小写
s.ToUpper(); //转换为大写
s.Substring(); //截取字符串
分割
string s = "a|b|c|ab|cd|c|d";
string[] str = s.Split('|');
foreach (string d in str)
{
Console.WriteLine(d);
}