0
我最近開始在c#中學習xml,xpath,xmldocuemtn。如何使用命名空間獲取xml元素
我有一個XML如圖bellow..namespaces是混淆了我很多
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<Worksheet ss:Name="Pricing">
</Worksheet>
<Worksheet ss:Name="Order">
</Worksheet>
</Workbook>
這裏是我的C#代碼..
XmlDocument doc = new XmlDocument();
doc.Load(ExcelFilePath);
你能告訴我怎樣可以得到工作表elemet與SS:Name屬性= '定價'
konard ...你是位於!!!!> .. 正在爲此工作4個小時...非常感謝你.. – kk0239