nerdexam
Microsoft

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.

Understanding .NET Framework Concepts

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)
  • A
    76% (37)
  • C
    16% (8)
  • D
    8% (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

#Assembly.Load#LoadModule#assembly loading#reflection

Community Discussion

No community discussion yet for this question.

Full 98-372 Practice