visual studio 2015 단축키
http://luyin.tistory.com/294
Basic/C#
2018. 3. 16. 18:58
굉장히 사소하지만 알아두면 좋은 C# 구문 1
1. Math.Abs // 값을 절대값으로 전환 2. 파일 생성 / 파일쓰기 fileName = String.Format(@"D:\csvData\RoughAFV_{0}.csv",DateTime.Now.ToString("yyyyMMddHHmmssfff")); StreamWriter sw = new StreamWriter(fileName, false, Encoding.Unicode); sw.Close(); sw.writeLine(); 3. 시간 계산 DateTime checkTriggerTime= DateTime.Now; DateTime nowTime = DateTime.Now; TimeSpan span = nowTime - checkTriggerTime; (int)span.TotalMilliseconds ..
Basic/C#
2018. 3. 8. 17:25