VB.NET - How do you install assembly to the Global Assembly Cache?

How do you install assembly to the Global Assembly Cache?

There are many ways:

1. Using Gacutil.exe e.g: gacutil -i MyLibrary.dll
2. Using Microsoft Windows installer 2.0.
3. Using Assembly Cache Viewer (Shfusion.dll)
4. Using the .NET Framework Configuration Tool (Mscorcfg.msc)
VB.NET - Explain how managed code slower than unmanaged code
Explain how managed code slower than unmanaged code - Managed code not always is slower than unmanaged code.......
What are the options for stepping through code?
Options for stepping through code - Show next statement - step into, step over, step out.....
VB.NET - Explain how to filter and sort data with the DataView component
Explain how to filter and sort data with the DataView component - With DataView, you can expose the data in a table with different sort orders, and you can filter the data by row state or based on a filter expression......
Post your comment