What is strong name and which tool is used for this ?

Answers were Sorted based on User's Feedback



What is strong name and which tool is used for this ?..

Answer / mohan kumar e.

If you want to design an assembly which is used by more
than one application then that assembly should be assigned
a strong name. sn.exe is used to generate a strong name.

Is This Answer Correct ?    15 Yes 1 No

What is strong name and which tool is used for this ?..

Answer / kamlesh sharma

A common use of attributes is to provide a strong name for
an assembly. assemblies that have a strong name can be
placed in the global assembly cache. The global assembly
cache enables a single assembly to be shared among multiple
projects. The global assembly cache can be used to share
multiple copies of the same assembly,

tool for that
command
sn -k mykey.snk

and then add this key in assembly information like
[assembly: AssemblyKeyFile("mykey.snk")]

and paste in global assembly catch
like

gacutil /i filename.dll

Is This Answer Correct ?    9 Yes 0 No

What is strong name and which tool is used for this ?..

Answer / nikey patel

Strong Name is to be assigned to shared assembly. when more
then one application is going to use that dll/assembly,
that assembly has to assign a strong name and has to be
place in GAC(Global Assembly Cache).

Is This Answer Correct ?    7 Yes 1 No

What is strong name and which tool is used for this ?..

Answer / priya

Strong name is like a GUID (globally unique Identifier.)
Strong Name is only needed when we need to deploy assembly
in GAC. Strong Names helps GAC to differentiate between two
versions.
Strong names use public key cryptography (PKC) to ensure
that no one can spoof it.PKC use public key and private key
concept.
strong name is given using SN.EXE

Is This Answer Correct ?    5 Yes 0 No

Post New Answer

More Dot Net Framework Interview Questions

What is tempdata?

0 Answers  


What is an asynchronous controller in asp.net mvc?

0 Answers  


i just want to write an exam regarding .net?plz give me information about taking a test?where to pay 4 d exam,exam centre?

0 Answers  


How can Bitwise OR operator reresents in .Net?? To which alias name a variable points to if it is declared as "int" variable??

1 Answers  


Will c# 3.0, vb.net 9.0, atlas, or linq be included in the .net framework 3.0?

0 Answers  






who handles these error while writing the source code???.

2 Answers  


What is the use of view model in asp.net mvc?

0 Answers  


What is Separation of Concerns in ASP.NET ASP.Net MVC?

0 Answers  


What is boxing and unboxing?

4 Answers   Kanbay, TCS,


Does windows 10 need .net framework?

0 Answers  


What is Dependency Injection in ASP.Net MVC

0 Answers   B-Ways TecnoSoft,


what is view state

3 Answers   Wipro,


Categories