SPContentTypeCollection ctc=web.ContentTypes;
string id = string.Empty;
foreach (SPContentType item in ctc)
{
if (string.Equals(item.Group.ToString(),"Custom CT"))
{
id = item.Id.ToString();
break;
}
Почему id = item.id.tostring()
не работает. Что-то не так в утверждении if.