Я не могу получить изображения, зависящие от варианта, для элемента
item.Variations.Pictures возвращает пустую коллекцию, а не объект PicturesType, который, как он говорит, возвращается в документах.
foreach (ItemType item in sellerlist)
{
if (item.Variations != null)
{
// item.Variations.Pictures is meant to return PicturesType object not a collection
PicturesTypeCollection b = item.Variations.Pictures;
Console.WriteLine(b.Count); // = 0
//if (f != null)