Shared Property Demo : Property « Class « VB.Net

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Date Time
8.Development
9.Event
10.File Directory
11.Generics
12.GUI
13.Internationalization I18N
14.Language Basics
15.LINQ
16.Network Remote
17.Reflection
18.Security
19.Thread
20.Windows Presentation Foundation
21.Windows System
22.XML
23.XML LINQ
VB.Net » Class » Property 




Shared Property Demo
Shared Property Demo
 
Imports System

Public Class MainClass

  Shared Sub Main()
        Dim As New Employee("Joe"100000)
        Console.WriteLine(e.TheName & " is employee# " & e.EmployeeId & "  with salary " & e.Salary())
        Dim Sally As New Employee("Sally"150000)
        Console.WriteLine(Sally.TheName & " is employee# " & _
        Sally.EmployeeId & " with salary " & Sally.Salary())
        Console.WriteLine("Please press the Enter key")
  End Sub


End Class



Public Class Employee
    Private m_Name As String
    Private m_Salary As Decimal
    Private Shared m_EmployeeID As Integer = 10000
    Private m_MyID As Integer
  Public Sub New(ByVal thesName As String, ByVal curSalary As Decimal)
        m_Name = thesName
        m_Salary = curSalary
        m_EmployeeID = m_EmployeeID + 1
        m_MyID = m_EmployeeID
  End Sub
  ReadOnly Property EmployeeId() As Integer
    Get
            Return m_MyID
    End Get
  End Property
  ReadOnly Property TheName() As String
    Get
      TheName = m_Name
    End Get
  End Property
  ReadOnly Property Salary() As Decimal
    Get
      Salary = m_Salary
    End Get
  End Property
End Class


           
         
  














Related examples in the same category
1.Declare Protected Properties
2.Get and set PropertiesGet and set Properties
3.Class Property Get and SetClass Property Get and Set
4.Property Shadow during InheritanceProperty Shadow during Inheritance
5.Define and use Class: PropertyDefine and use Class: Property
6.Compare int property
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.