TreeNode tn = new TreeNode(dr["pBillDate"].ToString()); // Here i am getting both date and time.
我需要将其转换为“2013年3月20日”.
请帮帮我.谢谢.
string formattedDate = YourDate.ToString("dd MMM yyyy");
它将格式化为“2012年11月12日”