Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.34 KB | None | 0 0
  1. Friend Class Item
  2.     Private Type As TItem
  3.     Friend Enum TItem
  4.         File
  5.         Directory
  6.     End Enum
  7.     Public Items As List(Of Item)
  8.     Private Name As String
  9.     Private Data As Object
  10.     Public Sub New(ByVal Name As String, ByVal Data As Object)
  11.             Me.Name = Name
  12.             Me.Data = Data
  13.     End Sub
  14. End Class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement