-
Re: Bitwise operator query in LINQPad?
Change where p.Party_type | 2 == 2 to where (p.Party_type | 2) == 21 · -
How to debug non-LinqPad code?
With older versions of LinqPad, you could attach the Visual studio debugger and step through, not just your LinqPad script but also through your code in other dlls. With the new integrated debugger, …1 · -
Re: Reference not updating
Could you have an older version referenced in 'My Extensions' or located in your Plugins folder?1 · -
Re: Using a license protected library
You could try change from C# Statements to C# Program in the style like void Main() { Licensing.AddSerialNumber("..."); MyCode(); } private void MyCode() { .... } This should mean the licen…1 ·