You are on page 1of 1

Difference Between Tradional 'ADD REFRENCE' method and 'ADD REFRENCE IN ASSEMBLY

':Main Difference:In tradional way whenever we create object of our assembly/class library after
adding the refrence of it in our 'Windows Based Project' then it can create a c
opy of our assembly/class library with a different Memory.
But when we use 'ADD REFRENCE IN ASSEMBLY(After register the assembly in GAC_
MSIL)' and then we create object of our assembly then in that case it don't make
a copy of it with a seprate memory, it consumes same memory which one is consum
ed when CLR Loads resources from GAC_MSIL at the of Compilation.

=========================================
C:\Users\MakkyAppy\Documents\Visual Studio 2012\Projects\Reflection_Related_Clas
sLIb\Reflection_Related_ClassLIb\bin\Debug

=============================================

<!--<asp:RadioButtonList ID="rdbtnGender" runat="server" Rep


eatDirection="Horizontal" TextAlign="Left">
<asp:ListItem Text="Male" Value="1"></asp:ListItem>
<asp:ListItem Text="Female" Value="2"></asp:ListItem>
<asp:ListItem Text="Others" Value="3"></asp:ListItem>
</asp:RadioButtonList>-->

You might also like