Advertisement
NAK

ExecuteSqlDataReader TestClass_1 (VB.NET)

NAK
Dec 3rd, 2013
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.52 KB | None | 0 0
  1. Public Class TestClass_1
  2.     ' The Property nams here should mach thaes in your DB
  3.     Private _name As String
  4.     Public Property Name() As String
  5.         Get
  6.             Return _name
  7.         End Get
  8.         Set(ByVal value As String)
  9.             _name = value
  10.         End Set
  11.     End Property
  12.  
  13.     Private _url As String
  14.     Public Property URL() As String
  15.         Get
  16.             Return _url
  17.         End Get
  18.         Set(ByVal value As String)
  19.             _url = value
  20.         End Set
  21.     End Property
  22.  
  23. End Class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement