Find Members with Binding Flags : Assembly « Development « VB.Net

VB.Net
1. 2D
2. Application
3. Class
4. Data Structure
5. Database ADO.net
6. Development
7. Event
8. File Directory
9. Generics
10. GUI
11. Language Basics
12. Network Remote
13. Thread
14. Windows System
15. XML
Microsoft Office Word 2007 Tutorial
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net Tutorial
VB.Net » Development » AssemblyScreenshots 
Find Members with Binding Flags
Find Members with Binding Flags

Imports System
Imports System.Reflection

 
Public Class MainClass

    Shared Sub Main(  )
         Dim As Type = Type.GetType("System.Reflection.Assembly")

         Dim mbrInfoArray As MemberInfo(  ) = t.FindMembers_
             MemberTypes.Method, _
             BindingFlags.Public Or _
             BindingFlags.Static Or _
             BindingFlags.NonPublic Or _
             BindingFlags.Instance Or _
             BindingFlags.DeclaredOnly, _
             Type.FilterName, "Get*")

         Dim inf As MemberInfo
         For Each inf In mbrInfoArray
             Console.WriteLine("{0} is a {1}", _
                 inf, inf.MemberType)
         Next
    End Sub
  
End Class

  
           
       
Related examples in the same category
1. Add all Public Assembly Form TypeAdd all Public Assembly Form Type
2. View all Assembly Form Type in a TreeView all Assembly Form Type in a Tree
3. View all Assembly Form Type and its members in a Tree
4. Get Assembly Member type: Property or Member Get Assembly Member type: Property or Member
5. Load all Types in one AssemblyLoad all Types in one Assembly
6. Get Class Name in Current AssemblyGet Class Name in Current Assembly
7. Get Executing AssemblyGet Executing Assembly
8. Get Information from AssemblyGet Information from Assembly
ww__w.___j___a_v___a___2_s.__c___o_m___ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.