Skip to content

Instantly share code, notes, and snippets.

@blaineh
Created October 27, 2011 04:47
Show Gist options
  • Save blaineh/1318797 to your computer and use it in GitHub Desktop.
Save blaineh/1318797 to your computer and use it in GitHub Desktop.
List VB.NET
Sub Main()
Dim list As ICollection(Of String) = New LinkedList(Of String)
list.Add("Blaine" & Environment.NewLine)
list.Add("Likes" & Environment.NewLine)
list.Add("Beer" & Environment.NewLine)
For Each word In list
Console.Write(word & " ")
Next
Console.WriteLine()
System.Console.ReadKey()
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment