Question:You need to write a code segment that will create a common language runtime (CLR) unit of isolation within an application. Which code segment should you use?
A Dim domain As AppDomain
domain = AppDomain.CreateDomain("MyDomain")B Dim myComponent As System.ComponentModel.Component
myComponent = New System.ComponentModel.Component()C Dim mySetup As AppDomainSetup = _
AppDomain.CurrentDomain.SetupInformation
mySetup.ShadowCopyFiles = "true"D Dim myProcess As System.Diagnostics.Process
myProcess = New System.Diagnostics.Process()
+ AnswerA
+ Report