c#随手记

1.输入输出
输入:Console.ReadLine();
输出: Console.WriteLine("hello");
2.数组声明
声明数组时方括号必须跟在类型后面。
3.随机数生成
Random ran = new Random();
int n = ran.Next(0, 100);//括号里表示取值范围
4.浮点数输入
(1)
float x = 0;
string str1 = Console.ReadLine();
float.TryParse(str1, out x);
(2)
double.Parse(Console.ReadLine());
5.保留小数位数
Math.Round(S, 2);
6.获取当前时间
DateTime dt = DateTime.Now;
dt.Year,dt.Month,dt.Day
7.计算程序耗时
(1)
DateTime start = DateTime.Now;
...
DateTime end = DateTime.Now;
TimeSpan span = end - start;
double seconds = span.TotalSeconds;
(2)
int sta = System.Environment.TickCount;
int end = System.Environment.TickCount;
Console.WriteLine("It costs {0}ms",end-sta);
8.字符分割
string IP = Console.ReadLine();
String[] sArr = IP.Split(new char[] { char.Parse(".") });

你可能感兴趣的:(c#随手记)