所以,我看到了另一個問題的答案說,這應該工作:檢查文件是否存在錯誤
using System.IO;
if (File.Exists(Path))
{
Action();
}
然而,當我這樣做,我得到這些錯誤:
'System.IO' is a 'namespace', which is not valid in the given context
The Name 'File' does not exist in the current context
什麼我做錯了嗎?
你也可能想看看ReSharper的,一個工具(不是免費的),有助於編寫更乾淨的代碼,並顯示該類型的異常當你輸入代碼時是正確的。 – Mathieu 2012-04-09 02:36:06