Date: 08/23/06 (Code WTF) Keywords: html, web Про StaticSiteMapProvider примерчик
public override SiteMapNode RootNode
{
get
{
SiteMapNode temp = null;
temp = BuildSiteMap();
return temp;
}
}
В чем сокровенный смысл? Почему бы не написать
get
{
return BuildSiteMap();
}
неясно... Source: http://community.livejournal.com/code_wtf/49741.html
|