如何在LINQPad中声明变量和use语句?
您知道如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需选择 C# 或 VB 语句,您就可以编写变量声明。
要查看变量的内容,您可以使用所有类型上可用的 Dump 扩展方法:
或者您可以使用
Console.Write
方法。如果要在 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:
Or you can use the
Console.Write
method.If you want to include method or class declarations within a LinqPad file, select C# or VB Program.