0

私がやろうとしていることは、私は次のxmlを持っています:

郵便番号id="E20 2AP" from = "test1" to = "test2" />

郵便番号IDを検索し、そのIDからテキストのfromとtoを取得しようとしているimは、次のコードを使用しています。

    Public Shared Function GetFromDate(ByVal PostCode As String) As String
    Dim LoadToAddresses = From ex In doc.Descendants.Elements("Postcode") Select New With {.accountName = ex.Attribute("id").Value, .datefrom = ex.Attribute("from").Value}
    For Each x In LoadToAddresses
        Dim datefrom = (From p In LoadToAddresses Where p.accountName = PostCode Select New With {.datefrom = p.datefrom}).Single
        Return datefrom.ToString
    Next
End Function

これは機能しますが、次のように返されます。

{datefrom=テスト}

私はそれを「テスト」と述べたいだけです

ありがとう

4

1 に答える 1

1
'Return datefrom.ToString
Return datefrom.datefrom

また:

'Dim datefrom = (From p In LoadToAddresses Where p.accountName = PostCode Select New With {.datefrom = p.datefrom}).Single
Dim datefrom = (From p In LoadToAddresses Where p.accountName = PostCode Select p.datefrom}).Single
于 2012-05-21T10:00:47.797 に答える