-
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 Micr…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. Yes.…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 · -
Re: Add a reference to C# program
No need to add the dll, just reference it, eg System.Web.HttpUtility.HtmlEncode("1&2").Dump(); There's no longer an option to add Framework assembly references. In keeping with Visual S…2 · -
Incorrect output when using Console.WriteLine with Util.WithStyle
The output from BenchMarkDotNet has a formatting issue and I think this is a bug in LinqPad. The following illustrates the issue. Console.Write (Util.WithStyle("1", "color:#008080"…1 ·