几周前,我将我的应用程序的目标.NET框架更改为第四版。最近我的Resharper告诉我,我的变量"MetaDescription“隐藏了属性string System.Web.UI.Page.MetaDescription
经过小范围的调查之后,之前工作的代码片段:
HtmlMeta MetaDescription = new HtmlMeta();
MetaDescription.Attributes.Add("name", "description");
MetaDescription.Attributes.Add("content", ((IFriendlySEO)Page).DescriptionString);
Header.Controls.Add(MetaDescription);
被更具可读性的代码所取代:
MetaDescription = ((IFriendlySEO)Page).DescriptionString;
(MetaKeywords也是如此)。
问:有没有什么有用的资源可以给出这些新功能的列表?
问题2:有没有这类项目的书籍(我指的是印刷版)(我看过"Essential C# 4.0",但它只为.NET新手准备)。对于那些想成为上师的人来说,有没有什么可以结出硕果的?)
谢谢。
发布于 2010-05-24 11:40:54
我想MSDN的What's New in ASP.NET 4 and Visual Web Developer页面可能就是你想要的。
https://stackoverflow.com/questions/2894572
复制相似问题