-
Re: Dumping in different panel
Any chance this could be implemented into LINQPad proper? That is, being able to dump to different target output panels, preferably with full support and functionality of the regular output panel. I …1 · -
Re: Linqpad Intellisense very slow
Generally speaking, when the source file size gets large (at least a couple 100k), then the analyzers and compilers will struggle to try to process it as it's edited in real time. So unless your…1 · -
Re: Native assemblies are not being referenced?
Thank you very much! I can verify that it's running fine without the workaround. Even works without using the "Copy all NuGet assemblies into a single local folder" setting.1 · -
Re: [DllImport("xyz.dll")] C# Expression/Statement Mode
I believe the import is really just a declaration of a method that must exist within a class. I'm not sure if it can really be declared at the top-level, even with latest c# versions. In program…1 · -
Re: Xaml string with bindings cannot be parsed
Figured it out. Need to use System.Windows.Markup.XamlReader.Parse() instead of System.Xaml.XamlServices.Parse(). Was able to parse the xaml as expected. Theory is XamlServices is for general xaml an…1 ·