How do assemblies find each other?
Answers were Sorted based on User's Feedback
Answer / swapna
By searching directory paths. There are several factors
which can affect the path (such as the AppDomain host, and
application configuration files), but for private
assemblies the search path is normally the application's
directory and its sub-directories.
For shared assemblies, the search path is normally same as
the private assembly path plus the shared assembly cache.
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / sid
By default private assemblies looking into bin directory.
But you can define in web.config file.
| Is This Answer Correct ? | 1 Yes | 0 No |
Will the name change be reflected in any of the existing .net framework 2.0 apis, assemblies, or namespaces?
Requirement is: try { \\SQL Query } catch(Exception i) { print a } catch(SQLQueryException e) { \\SQL Query } Qu)I Got Exception in "try" block. Which "catch" statement (i.e. 1st catch or 2nd catch ) catches the exception and Why???
what is lazy loading in entity framework?
explain how you can load related entities in ef (entity framework)?
What is entity sql? : Entity framework
Difference between int and int32
What does CLR do as soon as an assembly is created ?
What is ViewData and TempData in ASP.Net MVC?
What is the difference between the value-type variables and reference-type variables in terms of garbage collection ?
Will c# 3.0, vb.net 9.0, atlas, or linq be included in the .net framework 3.0?
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?
Explain .Net Framework? Why we use it?