Guest User

Untitled

a guest
Apr 20th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Public Structure MyData
  2.     Dim Title As String
  3.     Dim Date As String
  4. End Structure
  5.  
  6. Public myDataList As New List(Of MyData)
  7.  
  8.  
  9. ...
  10.  
  11.  
  12. Dim m As New MyData
  13. m.Title = "Whatever you want"
  14. m.Date ="November 10, 2011"
  15. myDataList.Add(m)
Add Comment
Please, Sign In to add comment