plz help me if any one know the answer its urgent
Theory Questions
Collapse
X
-
GAC means Global Assembly Cache.Originally posted by radcaesarIf u want ur assembly to be used outside your application i.e. by another application @ that time it has to be install into GAC.
With the help og GAC, versioning (Dll hell) problem was solved in .NET.
If u have an assembly A.dll and if u want application other than u r application to use it, then either u can make two copies of the dll and put it in there corresponding bin folder or u can put it in the GAC if u r sure that another version may come for the dll and applications may use different version of the same dll. U can register any dll to a GAC using gacutil. A strong name will be attached to the assembly if u r registering into GAC. u can make the strong name using "sn" utility. Hope u got a small idea....Comment
-
C# provides us with Value types and Reference Types. Value Types are stored on the stack and Reference types are stored on the heap. The conversion of value type to reference type is known as boxing and converting reference type back to the value type is known as unboxing.Originally posted by phundalhi frnds i am new to asp.net plz anybody answer my question
Look at this........... ....
Comment
-
Please check this linkOriginally posted by phundalhi frnds do reply my answer an i am new to .NET
http://msdn2.microsoft .com/en-us/library/t07a3dye(VS.80) .aspxComment
-
Assembly is the work used in .NET world to specify components.
refer it as dlls if its developed using some unmanaged codes. c,c++ etc.
It also refered as COM if it was developed using the COM architecture (Defined by MS) Using VB 6.0.
:)
Originally posted by phundali am new to .net plz help me an explain me in simple words that what are assemblies?Comment
Comment