What is Partial Assembly References?

Answers were Sorted based on User's Feedback



What is Partial Assembly References?..

Answer / reddy

A full assembly reference includes the assembly's text
name, version, culture, and public key token assembly has a
A full assembly reference is required if you reference any
assembly that is part of the common language runtime or any
assembly located in the global assembly cache. You can also
dynamically reference an assembly by providing only partial
information, such as specifying only the assembly name.
When you specify a partial assembly reference, the runtime
looks for the assembly only in the application directory.

Is This Answer Correct ?    7 Yes 0 No

What is Partial Assembly References?..

Answer / swapna

We can dynamically reference an assembly by providing only
partial information, such as specifying only the assembly
name. When you specify a partial assembly reference, the
runtime looks for the assembly only in the application
directory.

We can make partial references to an assembly in your code
one of the following ways:

1) Use a method such as System.Reflection.Assembly.Load and
specify only a partial reference. The runtime checks for
the assembly in the application directory.

method and specify only a partial reference. The runtime
checks for the assembly in the application directory and in
the global assembly cache.

Is This Answer Correct ?    2 Yes 1 No

What is Partial Assembly References?..

Answer / kirti

Full Assembly reference: A full assembly reference includes the assembly's text name, version, culture, and public key token (if the assembly has a strong name). A full assembly reference is required if you reference any assembly that is part of the common

language runtime or any assembly located in the global assembly cache.

Partial Assembly reference: We can dynamically reference an assembly by providing only partial information, such as specifying only the assembly name. When you specify a partial assembly reference, the runtime looks for the assembly only in the application

directory.

We can make partial references to an assembly in your code one of the following ways:

-> Use a method such as System.Reflection.Assembly.Load and specify only a partial reference. The runtime checks for the assembly in the application directory.

-> Use the System.Reflection.Assembly.LoadWithPartialName method and specify only a partial reference. The runtime checks for the assembly in the application directory and in the global assembly cache

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Dot Net Framework Interview Questions

Can we create .DLL file without using the namespace?

4 Answers  


Is it possibe to run 2 aplication on single m/c, one App is on .Net Framework 1.0 and another one is on .Net Fremework 2.0?

7 Answers  


what is the three pillar of .Net ?

11 Answers  


Explain the request flow in asp.net mvc framework?

0 Answers  


How many .NET languages can a single .NET DLL contain

1 Answers  






Which version of the common language runtime (clr) does the .net framework 3.0 use?

0 Answers  


Explain the role of assembly in the .net framework.

0 Answers  


What is the CLR

1 Answers  


How do you register the dotnet component or assembly ?

1 Answers   Accenture, BirlaSoft,


Describe the gac in the .net framework.

0 Answers  


What are delegates?where are they used

1 Answers  


Why are there five tracing levels in System.Diagnostics.TraceSwitcher?

1 Answers  


Categories