コード例 #1
0
        public string Format(string format, object arg, IFormatProvider formatProvider)
        {
            string result = string.Empty;;

            try
            {
                result = FrameworkUtils.DateToString(arg).ToString();
            }
            catch (Exception ex)
            {
                _log.Error(ex.Message, ex);
            }
            return(result);
        }