linqpad 中的根类
LinqPad 中定义的类是 UserQuery 的嵌套内部类。有没有办法声明类是根类?
Classes defined in LinqPad are nested, inner classes of UserQuery. Is there a way to declare classes that are root classes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从版本 2.4 / 4.4 开始,您可以通过定义
NONEST
符号在 LINQPad 中创建根类(在 C# 程序模式下):如果您定义静态类(C# 没有允许 fo 嵌套),您不需要 NONEST 符号 - LINQPad 将自动提取您的嵌套类。
From version 2.4 / 4.4, you can create root classes in LINQPad by defining the
NONEST
symbol (in C# Program mode):If you define a static class (which C# does not allow fo be nested), you don't need the NONEST symbol - LINQPad will extract your nested class automatically.
在较新版本中选择“C# 程序”作为语言类型。
Select 'C# Program' as the language type in the newer versions.