What is Global Assembly Cache (GAC) and what is the Purpose
of it?
Answer / guest
Each computer where the common language runtime is installed
has a machine-wide code cache called the global assembly
cache. The global assembly cache stores assemblies
specifically designated to be shared by several applications
on the computer. You should share assemblies by installing
them into the global assembly cache only when you need to.
Steps
- Create a strong name using sn.exe tool
eg: sn -k keyPair.snk
- with in AssemblyInfo.cs add the generated file name
eg: [assembly: AssemblyKeyFile("abc.snk")]
- recompile project, then install it to GAC by either
drag & drop it to assembly folder (C:\WINDOWS\assembly OR
C:\WINNT\assembly) (shfusion.dll tool)
or
gacutil -i abc.dll
| Is This Answer Correct ? | 3 Yes | 0 No |
Which Security Algorithm used to encrypt the data? a) DES b)RC2 c)Triple DES d)All the above
What is a .DLL and .EXE files called in .NET?
What tools is used to develop .NET applications?
What is the new three features of COM+ services, which are not there in COM (MTS)
How do you turn off cookies for one page in your site? Give an example.
What is a web service in .net?
Give an example for setter/ write-only methods
What are Generics? Where do we use them.
What is .net technology?
What are the differences between user control and server control?
How do you create threading in.net?
Explain what is the difference between response.redirect & server.transfer?