|
分類:[.NET 全般]
いつもお世話になっております。
現在、XBRLからデータを抽出する関数を作っているのですが、以下の関数において
tagName を jpfr-t-cte:NetSaes (ネットセールス)の部分に当てたいと思うのですが
そのようなことは可能でしょうか。宜しくお願い致します。
環境はVB2008EEです。
Private Sub getElement(ByVal fileFullPath As String, ByVal tagName As String, ByVal contextRef As String)
Dim contacts As XElement = XElement.Load(fileFullPath)
Dim elementValue = From item In contacts.<jpfr-t-cte:NetSaes> _
Where item.@contextRef = contextRef _
Select item.Value
Console.WriteLine("E Is {0}", elementValue(0))
End Sub
|