Tag 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 [...]
Posted in C#, LINQ, SharePoint | Also 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 [...]
Posted in C#, Software Documentation | Also tagged | 1 Comment