Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您知道如何在 LINQPad 中声明变量以保存查询结果并稍后在乘法查询中使用它吗?
谢谢!
只需选择 C# 或 VB 语句,您就可以编写变量声明。
要查看变量的内容,您可以使用适用于所有类型的 Dump 扩展方法:
var test = "Test String"; test.Dump(); // the content is shown in the output
或者您可以使用该Console.Write方法。
Console.Write
如果要在 LinqPad 文件中包含方法或类声明,请选择 C# 或 VB 程序。