VS Code 中的问题 运行 C# 代码:获取 scriptcs 错误

Trouble running C# code in VS Code: Getting scriptcs error

这是我第一次使用 Visual Studio 代码,我正在尝试 运行 一个简单的代码,但它给我一个错误:

'scriptcs' is not recognized as an internal or external command, operable program or batch file.

我有这个作为代码:

using System;

struct Employee{
   public int Id { get; set; }
   public string FullName { get; set; }
}

public class MyClass{
 public static void Main(){
   Employee obj= new Employee();
   obj.FullName = "Hello World";
   Console.WriteLine(obj.FullName);
  }
}

我试过安装Scriptcs Runner,但还是一样的问题。有人可以提出其他建议吗?

编辑:

根据你的许多建议,我尝试了以下方法:

问题还是一样。得到上面的错误。

您需要脚本运行程序扩展和安装脚本

安装和信息指南在这里:http://scriptcs.net/

  1. 安装 chocolatey
  2. 运行 cinst scriptcs 安装最新版本。

然后确保按照本指南安装脚本运行程序扩展: https://www.strathweb.com/2015/11/running-c-scripts-and-snippets-in-visual-studio-code-with-scriptcs/

扩展可以直接从 VS Code 安装:

  1. 按 F1
  2. 键入 ext install scriptcs运行ner
  3. 选择“安装”

问题不在 VS Code 中。问题是您的代码不正确。 输出到控制台的行应该在另一个区域,例如,在构造函数中。

using System;
struct Employee
{
    public int Id { get; set; }
    public string FullName { get; set; }
}

public class MyClass
{
    Employee obj = new Employee();

    public MyClass()
    {
            Console.WriteLine(obj.FullName);
    }
}
  1. 打开扩展并安装C#扩展:名称:C#, ,编号: ms-vscode.csharp ,说明:C# Visual Studio 代码(由 OmniSharp 提供支持)。 ,出版商: 微软 ,VS 市场 Link: https://marketplace.visualstudio.com/items?itemName=ms-vscode.csharp

  2. 转到控制台到您选择的文件夹并通过键入 dotnet new console -o TestConsoleApp 创建一个新的控制台项目 这将创建一个项目文件 TestConsoleApp.csproj

  3. 通过键入 Code .

  4. 启动 VS Code
  5. 在 VS Code 中转到终端并执行 dotnet run --project TestConsoleApp 到 运行 您的应用程序。或者,您可以开始调试 (F5)

这应该为您提供了一个良好的开端,您可以在其中使用您的代码。

如果您只想使用代码片段,您应该尝试 Athanasios Kataras 回答的内容,但我没有经验。

https://channel9.msdn.com/Blogs/dotnet/Get-started-VSCode-Csharp-NET-Core-Windows

上还有一个视频介绍

您正在尝试 运行 一个 csharp 程序而不将其创建为项目。对于您想在不创建完整项目的情况下快速 运行 的一次性简单项目,您需要 c# 脚本 运行ner。您可以按照以下说明安装它。下面是扩展的 github 页面的 link 以供参考。

转到扩展,搜索 scriptcs 并安装 scriptcs运行ner。 你提到你已经安装了这个,但它应该是你上面的一个简单的单文件程序所需要的。仔细检查它是这里的版本:https://github.com/filipw/vscode-scriptcs-runner.git

或者,如果您想创建一个实际项目,您将需要 运行 在集成终端中执行一些命令。

  • 初始化项目
    • dotnet new console
  • 添加您的代码
  • 运行 至 VSCode
    • 或在终端输入dotnet run

https://code.visualstudio.com/docs/languages/dotnet

嗨,我是编程领域的新手,所以在 C# 方面也是如此,但我遇到了这样的错误,这是我 运行 代码方式的原因。 我使用 tempcoderunnerfile 到 运行 c#,这就是我收到有关 scriptcs.

错误的原因

My Error

pictur of tempcoderunnerfile

Don't use this way

所以我删除了 tempcoderunnerfile 并使用 cmd (dotnet run) 到 运行 代码并且它已成功 运行 代码

像这样: use dotnet run

在 VS 代码终端中写入以下一行代码并按 Enter:

dotnet run

这个问题可以通过更改终端中代码运行器执行的命令来解决,这在本视频中得到了很好的展示here