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 |
What is exception handling?
Explain about the Common Language Runtime?
How many types of generations are there in a garbage collector?
What is garbage collection in .net? Explain the garbage collection process?
Tell us the differences between an interface and an abstract class in .net?
What is the difference between a class and an object, and how do these terms relate to each other?
Write the .net syntax for 'for loop'?
What application do you use to install a Windows service?
How does the .NET framework work?
Explain me what are the deferred execution and the immediate execution in linq?
Describe the start-up process for a Windows service.
Is .net core the future?