TryGetList(string ListName)

If you are not sure, the required List is present in the web,

you can use

SPList list = web.Lists.TryGetList(“ListName”);

//if your list doesn’t exist, it will return null

if (list != null)

{

// ur code

}

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s