my Xml file code is
and my link code is this
XElement xelement = XElement.Load("d:/CaseStudyBL.xmi");
XElement xmlDoc = XElement.Parse(xelement.ToString());
var tutorials = from tutorial in xelement.Descendants("ownedMember")
// select new
// {
// Abc = (string)tutorial.Attribute( "name"),
// };
// foreach (var tutorial in tutorials)
// MessageBox.Show(tutorial.Abc.ToString());
please help me how can i get th " xmi:xmi:type " attribute from above xml file.
when i put Abc = (string)tutorial.Attribute( "xmi:type") . it genrate an error of seprator(:) hexadecimal. plz
help me .
Advance thanks