Skip to content

Instantly share code, notes, and snippets.

View controlflow's full-sized avatar

Alexander Shvedov controlflow

View GitHub Profile
@controlflow
controlflow / gist:2868357
Created June 4, 2012 13:25 — forked from leppie/gist:2868328
CallWithEscapeContinuation
using System;
class Program
{
sealed class EscapeContinuation<T> : Exception
{
public T Value { get; private set; }
public void Raise(T value)
{