CSharp/リソース
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
&tag(CSharp, リソース);
*目次 [#w44244b5]
#contents
*参考情報 [#pe025dce]
-[[Visual Studioでリソースを管理する: .NET Tips: C#, VB.N...
*Tips [#x87de6fe]
**埋め込まれたxmlファイルの読み込み [#ce402597]
-[[asp.net - 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());
}}
終了行:
&tag(CSharp, リソース);
*目次 [#w44244b5]
#contents
*参考情報 [#pe025dce]
-[[Visual Studioでリソースを管理する: .NET Tips: C#, VB.N...
*Tips [#x87de6fe]
**埋め込まれたxmlファイルの読み込み [#ce402597]
-[[asp.net - 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());
}}
ページ名: