Which code segment should you use?

You are creating a console application by using C#.
You need to access the assembly found in the file named car.dll.
Which code segment should you use?

You are creating a console application by using C#.
You need to access the assembly found in the file named car.dll.
Which code segment should you use?

A.
Assembly.Load ();

B.
Assembly.GetExecutJingAssembly() ;

C.
this.GetType ();

D.
Assembly.LoadFiie(“car.dll”);

Explanation:
Because the car.dll is specific, you need to use the LoadFile option and include the object name.



Leave a Reply 2

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


MarcoJacob

MarcoJacob

D (LoadFile(…))

kasp

kasp

Similar to 45