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

What is the CLR

1 Answers  


what is entity framework?

0 Answers   Microsoft,


Explain representational state transfer (rest) in detail?

0 Answers  


what is mean by COM (component object model) and component based software development? Is it .NET is first COM based technology? Please answer me. Advance thanks.

1 Answers   Excel,


In razor syntax, what is the escape sequence character for @ symbol?

0 Answers  






what is deferred loading(lazy loading)?

0 Answers   Microsoft,


What is RouteConfig.cs in ASP.Net MVC 4?

0 Answers  


What is main objective of asp.net mvc 4 or what is new in mvc4 ?

0 Answers  


Explain covariance and contra-variance in .net framework 4.0. Give an example for each.

0 Answers  


When using aspx view engine, to have a consistent look and feel, across all pages of the application, we can make use of asp.net master pages. What is asp.net master pages equivalent, when using razor views?

0 Answers  


How can you prevent your class to be inherated further

1 Answers  


Explain RenderBody and RenderPage in ASP.Net MVC?

0 Answers  


Categories