I'm having a little trouble converting some LINQ to VB. I've taken a pass at figuring it out but I've been unsuccessful this moring thus far.
var feeds =
from feed in feedXML.Descendants("item")
select new
{
Date = DateTime.Parse(feed.Element("pubDate").Value)
.ToShortDateString(),
Title = feed.Element("title").Value,
Link = feed.Element("link").Value,
Description = feed.Element("description").Value,
};
Online code translators are not helping, and my unfamiliarly with VB LINQ is not very good. Any help would be greatly appreciated. Thanks!