Call Shared method : Shared « Class Module « VB.Net Tutorial

Home
VB.Net Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statements
5.Date Time
6.Class Module
7.Development
8.Collections
9.Generics
10.Attributes
11.Event
12.LINQ
13.Stream File
14.GUI
15.GUI Applications
16.Windows Presentation Foundation
17.2D Graphics
18.I18N Internationlization
19.Reflection
20.Regular Expressions
21.Security
22.Socket Network
23.Thread
24.Windows
25.XML
26.Database ADO.net
27.Design Patterns
VB.Net
VB.Net by API
VB.Net Tutorial » Class Module » Shared 
6.21.1.Call Shared method
Option Strict On
 Imports System
 Class YourClass 
    Private Shared instances As Integer = 0
    Private weight As Integer
    Private name As String

    Public Sub New(ByVal name As String, ByVal weight As Integer)
       instances += 1
       Me.name = name
       Me.weight = weight
    End Sub

    Public Shared Sub SharedMerthod( )
       Console.WriteLine("{0} cats adopted", instances)
    End Sub

    Public Sub TellWeight( )
       Console.WriteLine("{0} is {1} pounds",name, weight)
    End Sub

 End Class

 Module Module1

    Sub Main( )
       YourClass.SharedMerthod( )
       Dim obj As New YourClass("A"5)
       obj.TellWeight( )
       YourClass.SharedMerthod( )
       Dim obj2 As New YourClass("B"7)
       obj2.TellWeight( )  
       obj2.SharedMerthod( ) 
       YourClass.SharedMerthod( )      
    End Sub

 End Module
0 cats adopted
A is 5 pounds
1 cats adopted
B is 7 pounds
2 cats adopted
2 cats adopted
6.21.Shared
6.21.1.Call Shared method
6.21.2.Shared field (1)
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.