Guys i need to hard Code my XML string list data and then display it as the below out put in a console window!
<Photos>
<Photo> p1.jpg </Photo>
<Photo> p2.jpg </Photo>
<Photo> p3.jpg </Photo>
<Photo> p4.jpg </Photo>
<Photo> p5.jpg </Photo>
</Photos>
This what i have done so far!
namespace ConsoleApplication17
{
class Program
{
static void Main(string[] args)
{
List<string> list = new List<string>();
list.Add("p1.jpg");
list.Add("p2.jpg");
list.Add("p3.jpg");
}
}
}
Appreciate any help!