public static bool ListExists(this SPWeb web, string listName)
{
return web.Lists.Cast
}
Alternate for the Same
public static bool ListExists(SPWeb web, string listName)
{
var lists = web.Lists;
foreach (SPList list in lists)
{
if(list.Title.Equals(listName))
return true;
}
return false;
}
No comments:
Post a Comment