using System.Collections.Generic;
public static void Main()
<Incidentreport Company='company1' ID='sample'>
<status i_number='12345678' status='sucessful' />
var doc = new XmlDocument();
var result = doc.SelectSingleNode("/Report/Incidentreport/status/@i_number");
Console.WriteLine(result.Value);