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!
Â
⇒First Visual C# Program in Visual Studio 2017
⇒⇒Visual Studio Tutorials
2017-08-08, 1332👍, 0💬
Popular Posts:
Where to find tutorials on Visual Studio? I want to know How to learn Visual Studio. Here is a large...
How to read Atom validation errors at w3.org? If your Atom feed has errors, the Atom validator at w3...
Where to find tutorials on JSON (JavaScript Object Notation) text string format? I want to know how ...
How to extend json.JSONEncoder class? I want to encode other Python data types to JSON. If you encod...
How To Read Data from Keyboard (Standard Input) in PHP? If you want to read data from the standard i...