[Serializable]
public struct Item
{
public DateTime date;
public string title;
public string description;
}
Rss link
This is my existing structure. I create a collection of this structure which reads data from a rss XML(mentioned above). The Collection having the values according to the tag name
means RSS Item tag has date,title,description and author etc. Each item object having item (date) value of item tag's (date) value. But in the mentioned rss there is no date tag so my date value get blank value this is ok.But In our application user set which tag should use it may be a custom tag.Now I want to create a structure whose variable will create at run time with string datatype.