-
Re: Util.Pivot
I might be misunderstanding you, but doesn't Util.Pivot(obj).Dump(alpha:true); do what you want?1 · -
Re: LINQPad prepending temp folder to path
Have you counted the characters exactly? You would get this error if the path starts with a space, but then a space would be obvious in the error message, but perhaps there is some other invisible ch…2 · -
Re: How can I use the same project in `LINQPad` and in` Visual Studio`?
LINQPad is a utility or tool that can be used for many different things, and so I don't think I can say what its main Purpose is. I can tell you how I use it. Queries Nowadays, I very rarely use…1 · -
Re: How can I use the same project in `LINQPad` and in` Visual Studio`?
If you are expecting to have one source file that you can edit in either LinqPad or visual studio, then I don't believe that is possible. LinqPad uses linq files and VS uses cs and csproj files.…1 · -
Re: How to find out which temp (shadow) folder was created for my script?
If you know a type that comes from one of the dlls that will be in the shadow folder, you can try typeof(xxxx).Assembly.Location1 ·