首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

razor helper 函数如何写返回值

2014-01-05 
razor helper 函数怎么写返回值@helper helperName(//para){//code}[解决办法]try this?http://www.cnblo

razor helper 函数怎么写返回值
@helper helperName(//para)
{
  //code;
}
[解决办法]
try this?
http://www.cnblogs.com/insus/p/3379485.html
[解决办法]
用委托好了
Func<int,int,int> add = (x, y) => x + y;
使用
int x = add(1, 2); // x = 3
[解决办法]
http://weblogs.asp.net/scottgu/archive/2011/05/12/asp-net-mvc-3-and-the-helper-syntax-within-razor.aspx

你这个定义委托好了,Func(T, TResult)…

热点排行