私は次のものを持っています:
var contents = new[]
{
"Theme Gallery", "Converted Forms", "Page Output Cache", "Master Page",
"(no title)", ".css", ".xml", ".wsp", ".jpg", ".png", ".master"
, ".000" , "Page Output Cache" , "_catalogs", "Style Library", "Cache Profiles"
};
string fileUrl = siteCollectionEntity.Url + '/' + item.Url;
そして、コンテンツに含まれる単語が URL に含まれている場合にループが継続しないようにするステートメントを書きたいと思います。次の貧弱な構文についてはお詫びしますが、私がやろうとしていることをよりよく説明するのに役立つと思います...基本的には次のようなものです:
if (fileUrl.Contains(contents)) continue;
このようなことは可能ですか?