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:
SPContext.Current.Web.Lists["List"];
What's the difference between these two and whats the more efficient way?