1.下载好VS code并装好C#插件(.NET Core SDK)
2.VScode终端中输入新建项目(内置一个Hello world的程序)
dotnet new console
3.写你需要的C#代码(下面附加的代码是一个连接MySQL数据库的代码)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using MySql.Data.MySqlClient;
using System.Data;
namespace ConsoleApp
{
class Program