Question: Which command would you use to close the application domain in the following code sample?
Dim d As AppDomain = AppDomain.CreateDomain("New Domain")
d.ExecuteAssemblyByName("MyAssembly")
A
B
C
D
d.DomainUnload()
B
d = null
C
d.Unload()
D
AppDomain.Unload(d)
Note: Not available