can we use private assembly in other project in dot net.
Answers were Sorted based on User's Feedback
Answer / srinivasula reddy
No.
Shared or public assembly we can use.
Public assemblies are stored in GAC.
| Is This Answer Correct ? | 3 Yes | 3 No |
Yes we can use private assembly in other dot net projects. But a private assembly is used only by a single application, and is stored in that application's install directory (or a sub directory therein).
On the other hand public assembly are shared by more than one application at the same time that's why they are stored in GAC(Global assembly cache) and have a strong name with a version number,public key, culture info etc.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / rethee
Private assemblies can only used within an application.We
can use shared assemblies to use in multiple applications..
| Is This Answer Correct ? | 1 Yes | 2 No |
Which among the following two is best and why? Abstract Class and Interface. What is the major difference in between those two except the discrete methods and methods with function definition.
differance between checkbox and rediobutton in vb.net?
What is data type and how many types of data types are in .NET ?
why you wouldn't want to write into it even if you could
Can u explain me What is encapsulation?
7 Answers Deloitte, GK companies,
How to load the contents of an xml file into an xmldocument object?
Describe the start-up process for a Windows service.
Explain what is the difference between constants and read-only variables?
Please explain what garbage collection is and how it works. Provide a code example of how you can enforce garbage collection in .net?
What are the important components of .net?
What is manifest in .net?
Can we have same method with same name and signature using partial classes