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,并且我知道我可以在查询中粘贴类,但是是否可以添加 CSharp 类文件(cs)并在查询窗口中引用这些文件?
我尝试了一些类,但即使包含命名空间(在 f4 中)也无法访问它们
您可以在指令中包含 .cs 文件#load(LINQPad 6 及更高版本):
#load
#load "c:\source\MyLib\Utils\LinqExtensions.cs"
还支持相对路径和通配符:
#load "..\..\source\myutil\*.cs" #load "..\..\source\shared\*.cs /s"