Software/dotnetperls.com (1) 썸네일형 리스트형 C# DateTime Format ( C#의 날짜 포맷 ) 출처 : http://www.dotnetperls.com/datetime-format C#에서 사용되는 Datetime 날짜와 시간으로 표기된 시간으로서 선언 되어 있습니다. [SerializableAttribute] public struct DateTime : IComparable, IFormattable, IConvertible, ISerializable, IComparable, IEquatable 여기서 선언된 시간은 'ToString' 을 사용하여 다양한 형식으로 사용 될 수 있습니다. 이러한 사용이 가능 한것은 IFormattable 인페이스가 구현이 되어서 가능 합니다. ( IFormattable 참조 ) using System; using System.Globalization; public .. 이전 1 다음