I got acces to a XML file with the following data:
<VertrekTijd>2014-05-26T11:15:00+0200</VertrekTijd>
I use the following code to read this data:
case "VertrekTijd": lblv1.Text = (nodelist2.InnerText); break;
I recieve this in my label:
2014-05-26T11:15:00+0200
How do i get only the:
11:15
I looked around here but i didn't find any results.