1 Mar 2011 18:25
How is "rename" implemented in .NET
Hi all,
I am looking into the way Eiffel implements multiple inheritance in .NET. I understood the trick with the
interfaces and the private fields (if I might call them like this), but there is still something I am
wondering how it is done: renaming.
How does Eiffel for .NET do that? Let's assume I have these classes:
class A
feature
featureA is
do
-- my implementation
end
end
-----------------------------------------
class B
feature
featureA is
do
-- my implementation
end
end
-----------------------------------------
class C
(Continue reading)
RSS Feed