Search Results

0
votes
5answers
506 views

Assembly binding problems in .NET

I am writing a .NET library that for various reasons cannot be registered in the GAC. This dll (let's call it SDK.dll) depends on other DLLs in order to be loaded. When writing a program th …
0
votes

When should a class member be declared virtual (C#)/Overridable (VB.NET)?

First of all, I will answer you second question. Only methods can be declared virtual. You would choose virtual instead of abstract when you want some default functionality in your base class, but …