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 d.DomainUnload()
B d = null
C d.Unload()
D AppDomain.Unload(d)
+ AnswerD
+ Report