Object casting : Cast « Language Basics « VB.Net

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Development
8.Event
9.File Directory
10.Generics
11.GUI
12.Language Basics
13.LINQ
14.Network Remote
15.Security
16.Thread
17.Windows Presentation Foundation
18.Windows System
19.XML
20.XML LINQ
VB.Net Tutorial
VB.Net by API
VB.Net » Language Basics » CastScreenshots 
Object casting
Object casting

Imports System
Imports System.Data
Imports System.Collections

public class MainClass
   Shared Sub Main()
  Dim As String
        Dim myA As New A()
        Dim myB As New B()

        Dim myAReference As A
        Dim myBReference As B
        Dim myIReference As MyInterface

        Console.WriteLine("Same Type Conversion")
        myAReference = myA  

        Console.WriteLine("Base type - implicit")
        myAReference = myB  

        Console.WriteLine("Implemented interface - implicit")
        myIReference = myA   
        
        myA = CType(myIReference, A)

        Try
            myB = CType(myIReference, B)
        Catch As Exception
            Console.WriteLine(e.Message)
        End Try
        
        
   End Sub
End Class

    Interface MyInterface
        Sub MyInterfaceFunction()
    End Interface

    Class A
        Implements MyInterface
        Protected Overridable Sub MyFunction()

        End Sub
        Public Sub MyPublicFunction()

        End Sub
        Public Sub MyInterfaceFunction() Implements MyInterface.MyInterfaceFunction

        End Sub
    End Class

    Class B
        Inherits A

    End Class


           
       
Related examples in the same category
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.