Cool_Breeze 发表于 2021-3-9 13:41

C# csc.exe 编译出错。

本帖最后由 Cool_Breeze 于 2021-3-22 14:34 编辑

报错信息:
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?)



源代码如下:
using System;
using Microsoft.VisualBasic; // 这个空间可以导入
using Microsoft.VisualBasic.FileIO; // 这个报 FileIO 没有找到

class CopyFileExercise
{
    static void Main (string[] args)
    {
      Console.WriteLine("Hello World");
    }
}

zhanglei1371 发表于 2021-3-9 14:04

没有找到,删了那句不就行了。

Cool_Breeze 发表于 2021-3-9 14:12

本帖最后由 Cool_Breeze 于 2021-3-9 14:14 编辑

Summer大大 发表于 2021-3-9 14:06
Microsoft.VisualBasic.dll版本低
去哪里下载更高版本的呢?。我找到一个。我试试看

Cool_Breeze 发表于 2021-3-9 14:17

zhanglei1371 发表于 2021-3-9 14:04
没有找到,删了那句不就行了。

这个只是示例。。。

我为我敏上你妍 发表于 2021-3-9 14:22

版本不正确,也就是说你引用的dll里面还没实现你想用的功能,下载个最新的就好了

Cool_Breeze 发表于 2021-3-9 14:26

Summer大大 发表于 2021-3-9 14:06
Microsoft.VisualBasic.dll版本低


网上下的都没有我这个新。...

Cool_Breeze 发表于 2021-3-9 14:28

我为我敏上你妍 发表于 2021-3-9 14:22
版本不正确,也就是说你引用的dll里面还没实现你想用的功能,下载个最新的就好了

Cool_Breeze 发表于 2021-3-9 14:32

是不是 不支持 framework 程序哦!
但我看到官网是可以的!

wylksy 发表于 2021-3-9 14:32

可以的,挺好痛,赞赞赞那!!!!!!

Cool_Breeze 发表于 2021-3-9 15:11

Summer大大 发表于 2021-3-9 14:42
https://wwx.lanzoui.com/iJCqqmpyp2d

可以了,但是为什么你这个库,怎么这么小呢?
页: [1]
查看完整版本: C# csc.exe 编译出错。