报错信息:
Microsoft (R) Visual C# Compiler version 4.8.3761.0
for C# 5
Copyright (C) Microsoft Corporation. All rights reserved.
This compiler is provided as part of the Microsoft (R) .NET Framework, but only supports language versions up to C# 5, which is no longer the latest version. For compilers that support newer versions of the C# programming language, see http://go.microsoft.com/fwlink/?LinkID=533240
d:\GIN\c#\Exercise\CopyFile.cs(2,29): error CS0234: The type or namespace name 'FileIO' does not exist in the namespace 'Microsoft.VisualBasic' (are you missing an assembly reference?)
源代码如下:
[C#] 纯文本查看复制代码
using System;
using Microsoft.VisualBasic; // 这个空间可以导入
using Microsoft.VisualBasic.FileIO; // 这个报 FileIO 没有找到
class CopyFileExercise
{
static void Main (string[] args)
{
Console.WriteLine("Hello World");
}
}