微软今天宣布他们已经发布了适用于 Mac、Linux 和 Windows 的 Visual Studio Code。我尝试使用 IntelliSense 来输入关键字“Console”,但什么都没有显示出来。我尝试使用 Ctrl + Space 手动拉出 IntelliSense 框,但它只是永远显示“正在加载”。
这是我的代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Diagnostics;
namespace chapter3program1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("");
}
}
}
这在 Mono 中完美运行。
有什么办法可以修复或解决这个问题并将其纳入 IntelliSense 吗?
谢谢你!