Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there an Online version of LINQ Pad?

Tags:

linq

Is there an Online version of LINQ Pad?

like image 242
yonan2236 Avatar asked Jan 21 '11 01:01

yonan2236


People also ask

Is LINQPad free?

LINQPad standard edition is free to download and use.

What is LINQPad premium?

Purchase Premium Features. Purchase an activation code and unlock a wealth of extra features, including autocompletion, code snippets, cross-database querying, NuGet integration, direct editing of SQL data, and a fully integrated debugger! No further downloads are required. Be up and running in less than a minute.

What is LINQPad used for?

LINQPad is a software utility targeted at . NET Framework and . NET Core development. It is used to interactively query SQL databases (among other data sources such as OData or WCF Data Services) using LINQ, as well as interactively writing C# code without the need for an IDE.

What's new in LINQPad 7?

New FeaturesLINQPad 7 now supports F# 6. Connections configured for . NET 6.0 now always use the requested framework if available, regardless of your default framework choice. This avoids compilation errors that might otherwise result.


1 Answers

There are two online services that I know of, which don't have the nice graphical features of LINQPad, but can be used as web-based C# (or VB.NET) scratch pads. I use them for testing the code in my StackOverflow answers on PCs without Visual Studio.


Ideone

http://ideone.com/

It uses mono 2.8 and, thus, supports LINQ to objects. Apart from C# and VB.NET, Ideone supports a variety of other languages.


DotNetFiddle

https://dotnetfiddle.net/

DotNetFiddle lets you choose between .NET 4.5 and Roslyn and supports NuGet packages.

like image 175
Heinzi Avatar answered Sep 21 '22 13:09

Heinzi