&tag(リソース); &tag(CSharp, リソース); *目次 [#w44244b5] #contents *参考情報 [#pe025dce] -[[Visual Studioでリソースを管理する: .NET Tips: C#, VB.NET, Visual Studio:http://dobon.net/vb/dotnet/programing/vsresource.html]] *Tips [#x87de6fe] **埋め込まれたxmlファイルの読み込み [#ce402597] -[[asp.net - how to Read a .xml file from Resources.resx? - Stack Overflow:http://stackoverflow.com/questions/5672780/how-to-read-a-xml-file-from-resources-resx]] -文字列として読み込んでくれるのでそれをParseする。 #pre{{ // creating XDocument from your file var xml = XDocument.Parse(Resources.YourXml); // creating an empty DataSet object DataSet dataSet = new DataSet(); // filling DataSet with the xml read dataSet.ReadXml(xml.CreateReader()); }}