我正在使用visual studio 2012和.Net framework 4.5。我已將「Microsoft.VisualBasic」包含在我的項目參考中。命名空間'Microsoft.VisualBasic'中不存在類型或命名空間名稱'FileIO'
我在執行該項目時出現以下錯誤。
Compilation Error Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.
Compiler Error Message: CS0234: The type or namespace name 'FileIO' does not exist in the namespace 'Microsoft.VisualBasic' (are you missing an assembly reference?)
源錯誤:
int lineNumber = 0;
int flag = 1;
using (Microsoft.VisualBasic.FileIO.TextFieldParser parser = new Microsoft.VisualBasic.FileIO.TextFieldParser(file))
{
parser.CommentTokens = new string[] { "#" };
我試過一次又一次地將基準,但似乎並不奏效。
我甚至嘗試從以下問題在堆棧溢出的答案,但沒有任何幫助 microsoft.visualbasic.fileio does not exist
請幫我
可能的重複:http://stackoverflow.com/questions/15419475/the-type-or-namespace-textfieldparser-could-not-be-found – dotNET 2014-09-24 04:29:06
您是否添加了對Microsoft.VisualBasic.dll的引用?你從哪個框架文件夾給你參考?由於您使用的是Framework 4.5,該文件夾通常是C:\ Windows \ Microsoft.NET \ Framework64 \ v4.0.30319 – Sam 2014-09-24 04:30:07
您可以發佈解決方案資源管理器的屏幕截圖,其中引用節點已展開嗎?另外,選擇VB參考並顯示屬性窗口。 – jmcilhinney 2014-09-24 04:30:30