我只有一个关于 C# 的问题。
我已经下载了 Microsoft Visual C# 2010 Express 来编写 C# 代码。
现在,我想使用相同的可视化 C# 编译代码。我可以吗?
我已经搜索了一种编译代码的方法,但是我创建的所有方法都在谈论命令行“cmd”。我尝试使用它,但它给了我“csc 不被识别为内部或外部命令.....”尽管我所在的目录与 C# 代码目录相同
我想编译并在输出中查看结果。
这是要编译的原始代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Project1
{
class Example1_1
{
public static void Main()
{
// display “Hello World!” on the screen
System.Console.WriteLine("Hello World!");
// display the current date and time
System.Console.WriteLine("The current date and time is " +
System.DateTime.Now);
}
}
}
按 F6 'build' 的结果是:
------ 构建开始:项目:Project1,配置:Release x86 ------
Project1 -> C:\Users\Ali Alnufaili\AppData\Local\Temporary Projects\Project1\bin\Release\Project1.exe ========== 构建:1 个成功或最新,0 个失败,0 个跳过 ==========
如果您有任何建议,请告诉我。^_^