Pro MVC 2 の本を読んでいるのですが、HtmlHelper クラスの拡張メソッドを作成する例があります。
コード例は次のとおりです。
public static MvcHtmlString PageLinks(this HtmlHelper html, PagingInfo pagingInfo, Func<int,string> pageUrl)
{
//Magic here.
}
そして、ここに使用例があります:
[Test]
public void Can_Generate_Links_To_Other_Pages()
{
//Arrange: We're going to extend the Html helper class.
//It doesn't matter if the variable we use is null
HtmlHelper html = null;
PagingInfo pagingInfo = PagingInfo(){
CurrentPage = 2,
TotalItems = 28,
ItemsPerPage = 10
};
Func<int, String> pageUrl = i => "Page" + i;
//Act: Here's how it should format the links.
MvcHtmlString result = html.PageLinks(pagingInfo, pageUrl);
//Assert:
result.ToString().ShouldEqual(@"<a href=""Page1"">1</a><a href=""Page2"">2</a><a href=""Page3"">3</a>")
}
編集:この質問のポイントを混乱させた部分を削除しました。
問題は、なぜこの例で Func を使用しているのかということです。いつ使用すればよいですか?ファンクとは?
ありがとう!