Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
14
Task/XML-Output/Visual-Basic-.NET/xml-output.vb
Normal file
14
Task/XML-Output/Visual-Basic-.NET/xml-output.vb
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
Module XMLOutput
|
||||
Sub Main()
|
||||
Dim charRemarks As New Dictionary(Of String, String)
|
||||
charRemarks.Add("April", "Bubbly: I'm > Tam and <= Emily")
|
||||
charRemarks.Add("Tam O'Shanter", "Burns: ""When chapman billies leave the street ...""")
|
||||
charRemarks.Add("Emily", "Short & shrift")
|
||||
|
||||
Dim xml = <CharacterRemarks>
|
||||
<%= From cr In charRemarks Select <Character name=<%= cr.Key %>><%= cr.Value %></Character> %>
|
||||
</CharacterRemarks>
|
||||
|
||||
Console.WriteLine(xml)
|
||||
End Sub
|
||||
End Module
|
||||
Loading…
Add table
Add a link
Reference in a new issue