public List<string> GetPhotoUrl()
{
var phUrlList = new List<string>();
var posts = Api.Wall.Get(new WallGetParams { Domain = "lol.community", Count = 2 });
foreach (var item in posts.WallPosts)
{
string phUrl = (item.Attachments[0].Instance as Photo).Sizes[0].Url.AbsoluteUri.ToString();
phUrlList.Add(phUrl);
}
return phUrlList;
}
теперь такое шлёт(