Which of the following actions should you take?

You work as a developer at ABC.com. The ABC.com network consists of a single domain named
ABC.com.
You are in the process of developing a console application for ABC.com. While writing the
necessary code, you want to include the ability to accessa specific assembly in a specific .dll file.
Which of the following actions should you take?

You work as a developer at ABC.com. The ABC.com network consists of a single domain named
ABC.com.
You are in the process of developing a console application for ABC.com. While writing the
necessary code, you want to include the ability to accessa specific assembly in a specific .dll file.
Which of the following actions should you take?

A.
You should consider including code that makes use of the LoadModule method of the
Assembly class.

B.
You should consider including code that makes use of the GetFile method of the Assembly
class.

C.
You should consider including code that makes use of the Load method of the Assembly class.

D.
You should consider including code that makes use of the LoadFile method of the Assembly
class.

Explanation:



Leave a Reply 3

Your email address will not be published. Required fields are marked *


pnm

pnm

Correct answer?

don't test me

don't test me

LoadModule loads a module internal to the assembly.

Load loads an assembly using it’s name and would’ve been correct if it were not for the “a specific .dll file” which would actually require the use of LoadFile.

So D should be correct, no?