我正在研究一个我不记得以前遇到过的问题。我正在使用 VS2012 C#
当我添加使用时System.IO
;在我的主程序中一切正常,但是当我将它添加到我的类文件时,它不会让我使用所有的方法。
using System;
using System.Collections.Generic;
using System.IO;
using System.Data.SQLite;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FoxySearch
{
class FoxySearch
{
File. <<<<----- here i want to add File.Exists("Blablalba")
}
}
由于某种原因,它不会让我添加它。一旦我添加了句点,智能感知就会关闭并且没有显示任何选项。当我自己输入它时,它会显示为红色并说,
System.IO.File.Exists(string)
是一种方法,但用作类型