Re: Static method in Interface (C#) by Craig
Craig
Thu May 27 14:18:34 CDT 2004
One idea: create another interface, which provides the methods you want to
make static. The implementation of this method will call the static members
for the implementation of the first interface. This could be considered an
interface to the class that implements the first interface (as opposed to an
interface to an instance of the class).
Craig Bryant
Tektronix, Inc.
"Rasmus" <anonymous@discussions.microsoft.com> wrote in message
news:23C38A0A-0200-45BB-BF9E-54423653A04E@microsoft.com...
> No can do.
> I've looked it over and since multible inheritence is not an option i'll
need another solution.
>
> Any ideas?