Just curious that is there any way to find or compile the query (C# statements / programs) into a standalone dll.
There are times where I would like to create a new class in LINQPad, and export it as a dll.
e.g.
public class MyClass
{
private string _Name;
public string Name { get { return this._Name; } set { this._Name = value; } }
}
I wish to be able to export it as a dll on the fly.
There are times where I would like to create a new class in LINQPad, and export it as a dll.
e.g.
public class MyClass
{
private string _Name;
public string Name { get { return this._Name; } set { this._Name = value; } }
}
I wish to be able to export it as a dll on the fly.