Skip to content

Settings and activity

3 results found

  1. 6 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Martin Dobroucký shared this idea  · 
  2. 73 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Martin Dobroucký commented  · 

    Hi, here it is.
    Just paste following lines into LINQPad as C# Statements and reference Roslyn Nuget package.

    It's far from perfect, but it has nice 'lines of code / performance' ratio :)

    var sengine = new Roslyn.Scripting.CSharp.ScriptEngine();
    var session = sengine.CreateSession();
    string cmd;
    while(!string.IsNullOrEmpty(cmd = Console.ReadLine()))
    {
    try{
    session.Execute(cmd).Dump();
    }catch(Exception e){
    e.Dump();
    }
    }

    Martin Dobroucký supported this idea  · 
  3. 12 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Martin Dobroucký commented  · 

    Done! :)
    Check my project with LINQPad CSV data context dynamic driver - https://github.com/dobrou/CsvLINQPadDriver