Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
13
Task/XML-Input/Visual-Basic-.NET/xml-input.vb
Normal file
13
Task/XML-Input/Visual-Basic-.NET/xml-input.vb
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
Dim xml = <Students>
|
||||
<Student Name="April"/>
|
||||
<Student Name="Bob"/>
|
||||
<Student Name="Chad"/>
|
||||
<Student Name="Dave"/>
|
||||
<Student Name="Emily"/>
|
||||
</Students>
|
||||
|
||||
Dim names = (From node In xml...<Student> Select node.@Name).ToArray
|
||||
|
||||
For Each name In names
|
||||
Console.WriteLine(name)
|
||||
Next
|
||||
Loading…
Add table
Add a link
Reference in a new issue