如何:为未绑定类型添加 using
使用此过程可以执行“为未绑定类型添加 using”IntelliSense 操作。 有关更多信息,请参见添加 using。
过程
为未绑定类型添加 using 指令
创建一个控制台应用程序。 将应用程序命名为 AddUsing。
验证程序顶部的现有 using 指令是否不包括 using System.Data。
在**“解决方案资源管理器”中双击“引用”,以验证列表中是否有“System.Data”**。
将 Program 类替换为以下代码。
class ExampleClass { // For this feature to have an effect, the project must have // a reference to System.Data.dll, and must not already have // a using directive for System.Data. // A using directive is required for type DataSet. DataSet ds; }
右击 ExampleClass 中的 DataSet 以显示快捷菜单,指向**“解析”,然后单击“using System.Data”**。
将向程序顶部的 using 指令中添加下面的行:using System.Data;