Is it possible to iterate over a collection of fields from a sharepoint list and retrieve only our custom fields, and not the built-in sharepoint fields.
using (SPSite site = new SPSite("http://localhost/")) { using (SPWeb web = site.OpenWeb()) { SPList list = web.Lists["My List"]; foreach (SPField field in list.Fields) {
Any help would be appreciated.
thanks
source share