Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
using System;
class Test {
Func<int, int> Hi() {
return a => {
var i = 7;
return a + i + 10;
};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment