Singleton pattern – Design pattern

Singleton pattern is the one of the best known pattern in the software engineering. The singleton pattern is a design pattern that is used to restrict instance of class to one object, and usually gives simple access to that instance. Most commonly, singletons...

Sharepoint OM, getting email ID from login user name

You can use sharepoint object model you can get the email id from login user name. I have created one method to get the email ID after passing the user first and last name. I have used Microsoft Sharepoint SiteUserInfoList library, you can find all the imported user...