gpt4 book ai didi

visual-studio - 如何在我的 MS Visual Studio 2012 中的控制台中运行单个类

转载 作者:行者123 更新时间:2023-12-04 03:50:40 24 4
gpt4 key购买 nike

我有以下类(class):-

public Class test{
public void testmethod(int i)
{
i = 56789121;
//code ges here
Console.WriteLine(i);
} }

但是我需要运行这个类来查看 Console.writeline 的结果,但是我不确定我该怎么做。我通常使用 MS Visual Studio 构建一个 Web 应用程序并通过单击“开始”按钮运行该应用程序,但我从未尝试使用 Console.writeline 输出结果。BR

最佳答案

改为构建控制台应用程序。

File -> Add -> New Project... 并选择 Console Application

把VS生成的.cs文件改成这样

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication2
{
class Test
{
public void MyMethod()
{
Console.WriteLine("Hello World!");
}
}
class Program
{
static void Main(string[] args)
{
new Test().MyMethod();
}
}
}

关于visual-studio - 如何在我的 MS Visual Studio 2012 中的控制台中运行单个类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12951776/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com