G
Guest
Hey,
I want to inherit an abstract class and MessageWindow class.
can we do that?
for example,
abstract class SomeClass
{
public void SomeMethod()
{
// do something
}
}
can I create a new class which inherits both the above abstract class and
MessageWindow class?
public class MyClass : SomeClass, MessageWindow
{
}
Kindly let me know,
Cheers,
Naveen.
I want to inherit an abstract class and MessageWindow class.
can we do that?
for example,
abstract class SomeClass
{
public void SomeMethod()
{
// do something
}
}
can I create a new class which inherits both the above abstract class and
MessageWindow class?
public class MyClass : SomeClass, MessageWindow
{
}
Kindly let me know,
Cheers,
Naveen.