-
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 -
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 Vis…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 -
Re: LINQPad 6 v.6.5.5 MissingMethodException Thrown When Running a C# Program with System.Net.Dns
How and why are you adding Framework 4 references? You shouldn't need any additional references, and just one namespace System.Net See http://share.linqpad.net/tgfuie.linq1