Get Assembly Name
Returns the name of the currently executing or calling assembly.
VB
Public Function GetAssemblyName() As String
Dim asm As Assembly = Assembly.GetEntryAssembly()
If asm Is Nothing Then asm = Assembly.GetCallingAssembly()
Return asm.GetName().Name
End Function