Tools, FAQ, Tutorials:
VC# Command Line Compiler in Visual Studio 2017
How to use the VC# command line compiler provided by Visual Studio 2017?
✍: FYIcenter.com
If you want to use the compile your VC# code from the command line,
you can follow this tutorial to use the VC# command line compiler provided in Visual Studio 2017:
1. Create a simple VC# console application program, Hello.vb:
using System;
namespace Hello {
class Program {
static void Main(string[] args) {
Console.WriteLine("Hello World!");
}
}
}
2. Run "All Programs > Visual Studio 2017 > Visual Studio Tools > Developer Command Prompt for VS 2017". You see the Visual Studio Command Prompt window.
3. Compile the VC# program with the vbc command:
C:\fyicenter>csc Hello.cs Microsoft (R) Visual C# Compiler version 2.2.0.61624 Copyright (C) Microsoft Corporation. All rights reserved.
4. Run the VC# program:
C:\fyicenter>Hello.exe Hello World!
⇒ "MyLib.cs" - VC# Class and Library
⇐ Console App with VC# Code in Visual Studio 2017
2017-08-08, ∼2899🔥, 0💬
Popular Posts:
Where can I download the EPUB 2.0 sample book "The Metamorphosis" by Franz Kafka? You can following ...
How to use the "set-body" Policy Statement for an Azure API service operation? The "set-body" Policy...
How To Truncate an Array in PHP? If you want to remove a chunk of values from an array, you can use ...
How to add images to my EPUB books Images can be added into book content using the XHTML "img" eleme...
How To Avoid the Undefined Index Error in PHP? If you don't want your PHP page to give out errors as...