linqpad 中的根类

发布于 2024-10-29 18:39:51 字数 51 浏览 4 评论 0原文

LinqPad 中定义的类是 UserQuery 的嵌套内部类。有没有办法声明类是根类?

Classes defined in LinqPad are nested, inner classes of UserQuery. Is there a way to declare classes that are root classes?

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

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

发布评论

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

评论(2

赴月观长安 2024-11-05 18:39:51

从版本 2.4 / 4.4 开始,您可以通过定义 NONEST 符号在 LINQPad 中创建根类(在 C# 程序模式下):

#define NONEST
void Main()
{
    typeof (Foo).FullName.Dump();   // Foo
}

class Foo
{
}

如果您定义静态类(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):

#define NONEST
void Main()
{
    typeof (Foo).FullName.Dump();   // Foo
}

class Foo
{
}

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.

勿忘初心 2024-11-05 18:39:51

在较新版本中选择“C# 程序”作为语言类型。

Select 'C# Program' as the language type in the newer versions.

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