Пример #1
0
    // 유틸함수 : XML에서 Time데이터 얻기
    public DateTime GetTime(XmlNode pNode, string strKey, string strFormat)
    {
        string strDate = GetStr(pNode, strKey);

        if (true == string.IsNullOrEmpty(strDate))
        {
            return(DateTime.Now);
        }

        return(SHUtils.GetDateTimeToString(strDate, strFormat));
    }