シェアポイント リストのフィールド コレクションをループして、カスタム フィールドのみを取得し、シェアポイントの組み込みフィールドを取得することはできますか。
using (SPSite site = new SPSite("http://localhost/"))
{
using (SPWeb web = site.OpenWeb())
{
SPList list = web.Lists["My List"];
foreach (SPField field in list.Fields)
{
//We also get sharepoint built-in column here. And we don't want that, just our
//custom created fields.
}
}
}
どんな助けでも大歓迎です。
ありがとう