static int Double(int n) {
	return n * 2;
}
static void CallInExpression() {
Expression<Func<int, int>> CallExp = (x) => Double(x) + 1;
Console.WriteLine("ToString: {0}", CallExp.ToString());
}
