Tagged Questions
1
vote
2answers
71 views
What the difference between SPContext.Current.Web.Site.OpenWeb().Lists[“List”]; and SPContext.Current.Web.Lists[“List”]?
I have to refactor some sharepoint 2010 code from my collegue. Everytime he needs to access a list he does this:
SPContext.Current.Web.Site.OpenWeb().Lists["List"];
I used to do this:
...