Find if item is child of Content type

13/07/2017 13:25
public static bool IsItemChildOfContentType(SPListItem item, SPContentTypeId contentTypeId)
        {
            var itemCtId = item.ContentType.Id;
            var isContentType = itemCtId.IsChildOf(contentTypeId);
 
            return isContentType;
        }