匿名类型

来源:互联网 发布:淘宝小工具 编辑:程序博客网 时间:2024/04/29 06:24

今天看MVC的MapRoute方法

MapRoute(this RouteCollection routes,string name,string url,Object default,Object constraints,string[] namespaces)

实际用的时候如下


routes.MapRoute(

"Category","Category/{Action}/{categoryname}"

new {categoryName="food",Action="show"}

)

new{categoryName="food",Action="show"}

这句怎么看着这么眼熟,觉得是属性,但是前面没有类型啊

后来想想,想下来一个名词--匿名类型

原创粉丝点击