zoukankan      html  css  js  c++  java
  • C# 日期转换函数

    string.Format("{0:d}",dt);//2005-11-5 
    string.Format("{0:D}",dt);//2005年11月5日
    string.Format("{0:f}",dt);//2005年11月5日 14:23
    string.Format("{0:F}",dt);//2005年11月5日 14:23:23
    string.Format("{0:g}",dt);//2005-11-5 14:23
    string.Format("{0:G}",dt);//2005-11-5 14:23:23
    string.Format("{0:M}",dt);//11月5日
    string.Format("{0:R}",dt);//Sat, 05 Nov 2005 14:23:23 GMT
    string.Format("{0:s}",dt);//2005-11-05T14:23:23
    string.Format("{0:t}",dt);//14:23
    string.Format("{0:T}",dt);//14:23:23
    string.Format("{0:u}",dt);//2005-11-05 14:23:23Z
    string.Format("{0:U}",dt);//2005年11月5日 6:23:23
    string.Format("{0:Y}",dt);//2005年11月
    string.Format("{0}",dt);//2005-11-5 14:23:23
    string.Format("{0:yyyyMMddHHmmssffff}",dt);
  • 相关阅读:
    最短路径
    图解最小生成树
    图解最小生成树





    线索二叉树
    二叉树
  • 原文地址:https://www.cnblogs.com/chens2865/p/3394070.html
Copyright © 2011-2022 走看看