如何在LINQPad中声明变量和use语句?

发布于 2024-08-08 11:53:06 字数 61 浏览 6 评论 0原文

您知道如何在 LINQPad 中声明变量以保存查询结果并在以后的乘法查询中使用它吗?

谢谢!

Do you know how to declare variables in LINQPad in order to hold the query result and use it later in multiply queries?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

伪装你 2024-08-15 11:53:06

只需选择 C# 或 VB 语句,您就可以编写变量声明。

要查看变量的内容,您可以使用所有类型上可用的 Dump 扩展方法:

var test = "Test String";
test.Dump(); // the content is shown in the output

或者您可以使用 Console.Write 方法。

linqpad

如果要在 LinqPad 文件中包含方法或类声明,请选择 C# 或 VB 程序。

Just select C# or VB Statements, and you will be able to write variable declarations.

To view the content of your variables, you can use the Dump extension method available on all types:

var test = "Test String";
test.Dump(); // the content is shown in the output

Or you can use the Console.Write method.

linqpad

If you want to include method or class declarations within a LinqPad file, select C# or VB Program.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文