TimeSpan (시간)
2021.03.12
docs.microsoft.com/en-us/dotnet/api/system.timespan?view=net-5.0 TimeSpan Struct (System) Represents a time interval. docs.microsoft.com DateTime에 이어 TimeSpan이라는 클래스도 있다. 마찬가지로 static으로도 쓰일수 있고, 인스턴스화 이후에 사용해도 된다. using System; namespace timespan { class Program { static void Main(string[] args) { // Create var timeSpan = new TimeSpan(1, 2, 3); var timeSpan1 = new TimeSpan(1, 0, 0); var timeSpan..