N
newbie
Hello,
suppose I have:
Class A
with property which is overridable 'paramA'
Class B
inherits from class A
Overrides Property paramA() as Integer
Get
Return ???.paramA
End Get
End Property
I know that in C# you can write Return base.paramA
This returns the value of the ancestor.
How is this done in VB?
Thanks
suppose I have:
Class A
with property which is overridable 'paramA'
Class B
inherits from class A
Overrides Property paramA() as Integer
Get
Return ???.paramA
End Get
End Property
I know that in C# you can write Return base.paramA
This returns the value of the ancestor.
How is this done in VB?
Thanks