AppDomain.CurrentDomain : AppDomain « System.Reflection « VB.Net by API






AppDomain.CurrentDomain

  

Imports System.Reflection

Public Class Tester
    Public Shared Sub Main
    
        Dim myCurrentAppDomain As AppDomain
        Dim myAssemblies() As [Assembly]
        Dim myAssembly As [Assembly]
        Try
            myCurrentAppDomain = AppDomain.CurrentDomain
            myAssemblies = myCurrentAppDomain.GetAssemblies
            For Each myAssembly In myAssemblies
                Console.WriteLine(myAssembly.FullName)
            Next
            Console.WriteLine(myCurrentAppDomain.FriendlyName)
        Catch ex As Exception
            Console.WriteLine(ex.Message)
        End Try


    End Sub

End Class

   
    
  








Related examples in the same category

1.AppDomain.CreateDomain
2.AppDomain.CurrentDomain.BaseDirectory()
3.AppDomain.FriendlyName
4.AppDomain.GetAssemblies
5.AppDomain.GetCurrentThreadId()
6.AppDomain.Unload