home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic .NET - Read Less - Learn More / Visual_Basic.NET_Read_Less_Learn_More_Richard_Bowman_Visual_2002.iso / Resources / Code / Ch8-CreateSharedVariable / Module1.vb < prev   
Text File  |  2001-08-08  |  372b  |  15 lines

  1. Class Store
  2.     Public Shared Property1 As String
  3.     Public Shared Property2 As Integer
  4. End Class
  5.  
  6. Module Module1
  7.     Sub Main()
  8.         Store.Property1 = "This variable is not declared here"
  9.         Store.Property2 = 21
  10.         Console.WriteLine(Store.Property1)
  11.         Console.WriteLine(Store.Property2)
  12.         Console.ReadLine()
  13.     End Sub
  14. End Module
  15.