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 中定义的类是 UserQuery 的嵌套内部类。有没有办法声明作为根类的类?
NONEST从版本 2.4 / 4.4 开始,您可以通过定义符号(在C# 程序模式下)在 LINQPad 中创建根类:
NONEST
#define NONEST void Main() { typeof (Foo).FullName.Dump(); // Foo } class Foo { }
如果您定义一个静态类(C# 不允许嵌套该类),则不需要 NONEST 符号 - LINQPad 会自动提取您的嵌套类。
在较新版本中选择“C# 程序”作为语言类型。