Obtains type of MyClass1 class, gets the ConstructorInfo object matching the specified binding flags : ConstructorInfo « Reflection « 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 » Reflection » ConstructorInfo 
19.4.1.Obtains type of MyClass1 class, gets the ConstructorInfo object matching the specified binding flags
Imports System
Imports System.Reflection
Imports System.Security


Public Class MyClass1
    Public Sub New(ByVal i As Integer)
    End Sub 'New

    Public Shared Sub Main()
        Try
            Dim myType As Type = GetType(MyClass1)
            Dim types(0As Type
            types(0= GetType(Integer)

            Dim constructorInfoObj As ConstructorInfo = myType.GetConstructor(BindingFlags.Instance Or BindingFlags.Public, Nothing, types, Nothing)
            If Not (constructorInfoObj Is NothingThen
                Console.WriteLine("public, takes an integer as a parameter is ")
                Console.WriteLine(constructorInfoObj.ToString())
            Else
                Console.WriteLine("public, takes an integer as a parameter is not available.")
            End If
        Catch As ArgumentNullException
            Console.WriteLine("ArgumentNullException: " + e.Message)
        Catch As ArgumentException
            Console.WriteLine("ArgumentException: " + e.Message)
        Catch As SecurityException
            Console.WriteLine("SecurityException: " + e.Message)
        Catch As Exception
            Console.WriteLine("Exception: " + e.Message)
        End Try
    End Sub
End Class
19.4.ConstructorInfo
19.4.1.Obtains type of MyClass1 class, gets the ConstructorInfo object matching the specified binding flags
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.