在 Visual Studio 2015 或更高版本中,我可以打开“C# 交互窗口”并运行代码:
> 5 + 3 8
那很可爱。现在我如何与 我的代码 的类进行交互?假设我有一个打开的项目。
> new Cog() (1,5): error CS0246: The type or namespace name 'Cog' could not be found (are you missing a using directive or an assembly reference?)
在 2015 年至 2022 年期间使用 Visual Studio 时:
您可以通过导航到Views > Other Windows > C# Interactive打开 Interactive 窗口,
然后只需右键单击您的项目并从上下文菜单中运行 Initialize Interactive with Project 。
对于旧版本:
要在代码中使用 C# 交互窗口,请确保首先编译代码,然后使用如下#r命令添加对生成的程序集的引用:
#r
您也可以使用即时窗口与您的代码进行交互,如下所示: