-
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 mode… (View Post) -
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… (View Post) -
Source Generator Support?
Is this something that could be integrated into LINQPad? I love the fact that LINQPad allows me to try out new features of the language/framework usually but it looks like this needs build and IDE su… (View Post) -
Add the ability to step/debug through #load-ed files
I'm making heavy use of the #load directive to include classes from other linq files. This is great since it allows me to create organized libraries of reusable code within linqpad without throwing t… (View Post) -
Re: Can't set breakpoint in UI click handler
The problem is that your program completes the moment Main() returns. The action you're attempting to step through is run well after the debugger is detached. You need to signal to LINQPad that your … (View Post)