A
Alessandro Fragnani de Morais
Hi,
In Win32 framework, we used to work with .dll files as libraries of
functions, not objects. We couldn't use objects because using a "IS"
operation (on Delphi for instance) to check the type of the class, should
not work.. I mean:
1. I have an object (TForm) on my application (.exe)
2. I have another object (TForm also) that is created on a library (.dll)
3. If in some moment I need to check the compatibility between this two
objects (formFromEXE IS formFromDLL), this always returns FALSE..
In .NET framework it appears to work.. (at least it was what I understood
while reading the documentation).
Is it true?
Thanks
Alessandro
In Win32 framework, we used to work with .dll files as libraries of
functions, not objects. We couldn't use objects because using a "IS"
operation (on Delphi for instance) to check the type of the class, should
not work.. I mean:
1. I have an object (TForm) on my application (.exe)
2. I have another object (TForm also) that is created on a library (.dll)
3. If in some moment I need to check the compatibility between this two
objects (formFromEXE IS formFromDLL), this always returns FALSE..
In .NET framework it appears to work.. (at least it was what I understood
while reading the documentation).
Is it true?
Thanks
Alessandro