98-372 · Question #144
Which two methods can you use to load an assembly? (Each correct answer presents a complete solution. Choose two.)
The correct answer is A. Load(String) B. LoadModule(String, Byte()). A: Assembly.Load Method (String) Loads an assembly given the long form of its name. B: LoadModule(String, Byte[]) Loads the module, internal to this assembly, with a common object file format (COFF)-based image containing an emitted module, or a resource file.
Question
Which two methods can you use to load an assembly? (Each correct answer presents a complete solution. Choose two.)
Options
- ALoad(String)
- BLoadModule(String, Byte())
- CGetLoadedModules()
- DLoadFrom(String)
How the community answered
(49 responses)- A76% (37)
- C16% (8)
- D8% (4)
Explanation
A: Assembly.Load Method (String) Loads an assembly given the long form of its name. B: LoadModule(String, Byte[]) Loads the module, internal to this assembly, with a common object file format (COFF)-based image containing an emitted module, or a resource file.
Topics
Community Discussion
No community discussion yet for this question.