Skip to content

Instantly share code, notes, and snippets.

@masaru-b-cl
Created April 14, 2014 05:27
Show Gist options
  • Save masaru-b-cl/10618465 to your computer and use it in GitHub Desktop.
Save masaru-b-cl/10618465 to your computer and use it in GitHub Desktop.
メソッドチェーンの先頭で無名関数定義?
using System;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
var result = new Func<int, int>(x => x * x)
.Invoke(2)
.ToString("d10");
Console.WriteLine(result);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment