C
cmrchs
Hi,
what is the syntax to inherit from an interface AND a class ?
Suppose :
interface IA
Sub F()
end interface
class B
...
end class
and I want to create a new class C inheriting from both :
class C
Implements IA _
Inherits B
Sub F() implements IA.F
End sub
end class
but I get a syntax error in the inheriting clause
Any ideas ?
Thank you
Chris
**********************************************************************
Sent via Fuzzy Software @ http://www.fuzzysoftware.com/
Comprehensive, categorised, searchable collection of links to ASP & ASP.NET resources...
what is the syntax to inherit from an interface AND a class ?
Suppose :
interface IA
Sub F()
end interface
class B
...
end class
and I want to create a new class C inheriting from both :
class C
Implements IA _
Inherits B
Sub F() implements IA.F
End sub
end class
but I get a syntax error in the inheriting clause
Any ideas ?
Thank you
Chris
**********************************************************************
Sent via Fuzzy Software @ http://www.fuzzysoftware.com/
Comprehensive, categorised, searchable collection of links to ASP & ASP.NET resources...