This post has been migrated from www.experimentsincode.com, we apologise if some of the images or content is missing
///
/// Feed title
///
public string Title
{
get
{
return this[TitleField];
}
}
///
/// Feed description
///
public string Description
{
get
{
return this[DescriptionField];
}
}
///
/// Feed title
///
public string Title
{
get
{
return this["Title"];
}
}
///
/// Feed description
///
public string Description
{
get
{
return this["Text"];
}
}