Created
April 14, 2014 05:27
-
-
Save masaru-b-cl/10618465 to your computer and use it in GitHub Desktop.
メソッドチェーンの先頭で無名関数定義?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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