My.Application.Info Property

Gets an object that provides properties for getting information about the application's assembly, such as the version number, description, and so on.

' Usage
Dim value As Microsoft.VisualBasic.ApplicationServices.AssemblyInfo = My.Application.Info
' Declaration
Public ReadOnly Property Info As AssemblyInfo

Property Value

This property returns the My.Application.Info object for the current application.

Remarks

This property provides easy access to the My.Application.Info. For more information, see My.Application.Info Object.

Example

This example uses the My.Application.Info.Version property to display the version of the application.

MsgBox("Application version: " & My.Application.Info.Version.ToString)

Requirements

Namespace:Microsoft.VisualBasic.ApplicationServices

Class:ApplicationBase

Assembly: Visual Basic Runtime Library (in Microsoft.VisualBasic.dll)

Availability by Project Type

Project type

Available

Windows Application

Yes

Class Library

Yes

Console Application

Yes

Windows Control Library

Yes

Web Control Library

No

Windows Service

Yes

Web Site

No

Permissions

No permissions are required.

See Also

Reference

My.Application Object

My.Application.Info Object