Can private assembly be used for more than one application?
If so how?

Answers were Sorted based on User's Feedback



Can private assembly be used for more than one application? If so how?..

Answer / vyas pyk

Private assembly cannot b shared between two different
application, because private assembly will be stored beneat
the application folder or in root folder.

Is This Answer Correct ?    5 Yes 0 No

Can private assembly be used for more than one application? If so how?..

Answer / nishant

Yes, private assemblies can be used more than 1 application.
if you add the reference of private assembly in your
project, it creates the copy which stored in a bin
directory.

Is This Answer Correct ?    8 Yes 4 No

Can private assembly be used for more than one application? If so how?..

Answer / raj

no

Is This Answer Correct ?    5 Yes 4 No

Can private assembly be used for more than one application? If so how?..

Answer / anand. m. m

No, in directly we cannot use, but using the tool
ILDASM(provided my microsoft) or Reflector(third party), we
can decompile the other assembiles and look into them. So it
is easy to reverse engineer them and crack your application.

To provide this reverse engineering using the technique
"obfuscation". There are many third parties(xenocode,
Demeanor for .Net)

Is This Answer Correct ?    1 Yes 0 No

Can private assembly be used for more than one application? If so how?..

Answer / amit

I think yes we can do this, because in my multitier solution if I am having three different projects as presentation layer, business logic and data access layer. Whenever I want some data to display in Browser, I am first requesting to Business layer and it will request to Data layer. For this I am calling respective methods from that layer and to achieve this, I am adding reference of that project or layer in my current layer. Without adding reference I cannot do that. So this way I am accessing my data layer private assembly in Business layer and business layer in presentation layer. Please correct me if I am wrong. Thanks.

Is This Answer Correct ?    0 Yes 0 No

Can private assembly be used for more than one application? If so how?..

Answer / rajesh kumar

NO, Private Assembly in Stored in Application Diretory or
Sub Directory Benethe. Private Assembly is Appliaction to
that Application Only.

Is This Answer Correct ?    0 Yes 1 No

Can private assembly be used for more than one application? If so how?..

Answer / sani

The same question was asked to me, i think the answer is
yes, got this frm interviewer itself.
Not sure, is it by side by side execution?

Is This Answer Correct ?    2 Yes 4 No

Post New Answer

More ASP.NET Interview Questions

Contrast OOP and SOA. What are tenets of each ?

0 Answers  


Tell something about state management in asp.net?

3 Answers   Accenture,


how can we maintain security in soted procedure?

1 Answers  


Name and describe some HTTP Status Codes and what they express to the requesting client ?

1 Answers  


can we pass coditions in swtich case?

3 Answers  






What is viewstate?

6 Answers   Abacus, Microsoft, Sopra,


What is role-based security in asp.net?

0 Answers  


Describe the disadvantage of cookies.

0 Answers  


I am using ASP.Net 2.0. I added the following code in button_Click page. but 'PreviousPage' is not taking as a keyword. It throughs an error. Page Poster = this.PreviousPage; TextBox txtNewTest = (TextBox)Poster.FindControl("txtTest"); sDisplay = txtNewTest.Text; Response.Write(sDisplay); The following is the Error Message: 'controls_LoginMain' does not contain a definition for 'PreviousPage'

2 Answers  


What is the main function of url routing system in asp.net mvc? : asp.net mvc

0 Answers  


What is CTE in sql server 2005?

3 Answers   Minecode,


How to use DevExpress controls

1 Answers  


Categories