it is some thing like this, in your code behind, after you have reference the DLL's to a new application, you can type this to know what functions can be override.
using NamespaceFromDLL //this namespace is namespace use by the DLL that you want to override
public class SomeClass
{
public override .....//in this area, it will automatically show all functions/methods that you can
//override, if nothing shows, if means there area no functions/methods that
//are declared as virtual.
}
Please mark as an Answer if this helps you, thnxs
JFRBPH12™
It's more fun in the Philippines :)
http://www.itsmorefuninthephilippines.com/
johnjalani
Member
334 Points
554 Posts
Re: How To Make changes to Compiled Files ???
May 05, 2012 07:00 AM|LINK
it is some thing like this, in your code behind, after you have reference the DLL's to a new application, you can type this to know what functions can be override.
using NamespaceFromDLL //this namespace is namespace use by the DLL that you want to override public class SomeClass { public override .....//in this area, it will automatically show all functions/methods that you can //override, if nothing shows, if means there area no functions/methods that //are declared as virtual. }Please mark as an Answer if this helps you, thnxs
It's more fun in the Philippines :)
http://www.itsmorefuninthephilippines.com/