Global Assembly Cache
-> Each computer where the CLR is installed has a machine-wide code cache called global assembly cache. The GAC stores assemblies specifically designated to be shared by several applications on…
-> Each computer where the CLR is installed has a machine-wide code cache called global assembly cache. The GAC stores assemblies specifically designated to be shared by several applications on…
-> The assembly manifest contains the assembly metadata. Every assembly, whether static or dynamic, contains a collection of data that describes how the elements in the assembly relate to each…
-> An assembly is a container for a set of resources and types. -> Assemblies can be referenced by other assemblies. -> In visual studio, an assembly equates to a…
-> is a set of public types and APIs in the System.Threading and System.Threading.Tasks namespaces. -> The purpose of the TPL is to make developers more productive by simplifying the…
Linq v/s Store Procedure -> Debugging : It is difficult to debug a stored procedure but as Linq is part of .Net, visual studio debugger can be used to debug the queries….
-> Language Integrated Query or Linq is the collection of standard query operators which provides query facilities into .Net framework language like C#, Vb.Net. Types of Linq -> Linq to…
Asymmetric (or Public Key) Encryption -> One key is used for encryption and other is another key for decryption -> Cryptography namespace includes four symmetric algorithms DSA, ECDDiffieHellman, ECDsa, RSA…
-> One key is used for both encryption and decryption. -> faster than asymmetric encryption -> Cryptography namespace includes five symmetric algorithms – Aes, DES, RC2, Rijndael, TripleDES DES -> Data…
-> Hashing is the process of mapping binary data of a variable length to a fixed size binary data. -> One-way encryption -> Common algorithms: – MD5 (generates a 16…
-> Encryption is the process of transforming plain data in a way that makes it harder for an unauthorized person to make sense of it. The encrypted data is called…