我寫了這個代碼在VB:C#ToShortDateString
expireDate = (DateTime.Parse(decal.DecalExpireDate).ToShortDateString).ToString
現在我想要寫在C#中相同的代碼,這是我想出了:
expireDate = decal.DecalExpireDate.ToString();
expireDate = DateTime.Parse(expireDate).ToShortDateString();
有誰知道如何簡化C#代碼,這是一行兩行。這讓我煩惱,我可以用vb在一行中完成,但不能在c#中完成。
decal.DecalExpireDate是我用linq檢索的一個smallDateTime。 EXPIREDATE是我回國的功能
這沒有意義。你爲什麼要在字符串上調用'ToString()'? – SLaks 2012-03-09 19:06:36