-
Re: Do Aspect Oriented Programming using PostSharp (IL Weaving)
It looks like PostSharp relies on some MSBuild magic to invoke an executable to instrument the target assembly after compilation. LINQPad doesn't use MSBuild - it just compiles C# code with refe…1 · -
Re: How can I use Emacs keyboard shortcuts on LINQPad ?
Right now there no are options for remapping keys, or choosing emacs or vi bindings.1 · -
Re: CompiledQuery in LinqPad
Compiled queries is for LINQ to SQL. Are you using Entity Framework? If so, this will not work. With EF5 and later, queries are automatically compiled in subsequent executions, so you won't need…1 · -
Re: Using LINQPad with a screen reader
I'm guessing the ActiPro editor which LINQPad uses is not compatible with those screen readers. It would be good if there was a simple workaround, but I suspect it won't be easy to fix.1 · -
Re: "Does not contain definition" error when trying to call a specific static method in Json.NET
Can you verify that it's picking up the assembly from the right location? Run the following query: typeof (JsonSerializer).Assembly.Location1 ·
