2012-06-01 63 views
3

我在寫一個VB.NET應用程序,我想從資源加載內部文本文件。將內部文本文件加載爲XML

但代碼顯示URI無效:Uri字符串太長。

的代碼是

'document.Load("C:\Users\Sou\Documents\Visual Studio 2010\Projects\info.xml") 
document.Load(My.Resources.info) 
'some processing job with XML node ... 

那麼,如何加載資源文件?

回答

5
Dim xdc As New XmlDocument 
xdc.LoadXml(My.Resources.info) 
MsgBox(xdc.OuterXml)