Click here to Skip to main content
15,885,365 members
Articles / Programming Languages / Visual Basic

Dynamic Console App for Invoking .NET Assemblies

Rate me:
Please Sign up or sign in to vote.
4.38/5 (4 votes)
18 Oct 2007CPOL3 min read 37.5K   188   24  
This application demonstrates how .NET Reflection can be used to Query and Invoke Any Assemblies Methods.
Public Class ReturnValue

    Private _value As String

    Public Property Value() As String
        Get
            Return Me._value
        End Get
        Set(ByVal value As String)
            Me._value = value
        End Set
    End Property

    Public Sub New(ByVal value As String)
        Me._value = value
    End Sub
End Class

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect
Canada Canada
Engineer, maker, food lover

Comments and Discussions