사용자 정의 시간 형식 변환 코드 공유

815 단어
 
  
///
        ///
        ///

        /// "2012 5 14 "
        private DateTime ParseDateTime(string strDateTime)
        {
            ////Like: string strDateTime = "2012 5 14 ";
            DateTime dateTime;
            if (DateTime.TryParseExact(strDateTime, "yyyy M d ", new System.Globalization.CultureInfo("en-US"), System.Globalization.DateTimeStyles.AssumeLocal, out dateTime))
            {
                return dateTime;
            }
            else
            {
                return DateTime.Today;
            }
        }

좋은 웹페이지 즐겨찾기