Skip to content

Settings and activity

3 results found

  1. 2 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)
    Jeff Mercado shared this idea  · 
  2. 4 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
    Jeff Mercado commented  · 

    That'll work. Though I'd prefer if it was the default behavior of Dump() if possible.

    An error occurred while saving the comment
    Jeff Mercado commented  · 

    To demonstrate, you would have to wait 10 seconds to see any results for this:

    Enumerable.Range(0, 10).Select(i =>
    {
    Thread.Sleep(1000);
    return i;
    }).Dump();

    For this, you won't get any results at all, just the exception.

    Enumerable.Range(0, 10).Select(i =>
    {
    Thread.Sleep(1000);
    if (i > 8)
    throw new Exception("No results for you");
    return i;
    }).Dump();

    Jeff Mercado shared this idea  · 
  3. 92 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)
    Jeff Mercado supported this idea  ·