Category Archives: C#

SharePoint Get Emails for Users Associated to SPListItem

Challenge On a recent project, I needed a way to build a list of emails for a given SPListItem. Considering most of you just want the code, here it is: Solution public List GetEmailsForUsersAssociated(SPListItem item) { //list for emails [...]
Also posted in LINQ, SharePoint | Tagged , , | Leave a comment

Doxygen Generate C# Documentation

Challenge I recently had the task to create anlibrary for software I designed for a client. I was looking for a simple way to generate C# documentation using thecomments in Visual Studio. I work tirelessly to comment each of my functions, and wanted to see my comments put to good use. Research I spent several days [...]
Also posted in Software Documentation | Tagged , | 1 Comment