What is Partial Assembly References?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
what is VSS? Where we are using?
How we can call a JavaScript function on the change of a Dropdown List in ASP.Net MVC?
Do you know about the new features in ASP.Net MVC 4 ?
How does .net framework works?
Can you explain renderbody and renderpage in mvc?
What is the use of action filters in an mvc application?
what is more complex to implement property, methods or event? how can I define criteria to compare the difficulty of implementation between them? for example the number of methods wanted to implements property is 2 methods. how many methods I need it to implements events?
what is Assemble
How do I change the permission set for a code group
What is "out" parameter how it is used in methods?
What does mvvm mean?
what is client wins and store wins mode in entity framework concurrency?