Hello All:
When trying to override an abstract method I get
"Function: No suitable method found to override"
This seems to occur when the abstract method has
a parameter:
public abstract string MyMethod(string strVal);
public override string MyMethod(string strVal)
{}
If I remove the parameter I can override it fine.
Any ideas?
TIA
MeonR
When trying to override an abstract method I get
"Function: No suitable method found to override"
This seems to occur when the abstract method has
a parameter:
public abstract string MyMethod(string strVal);
public override string MyMethod(string strVal)
{}
If I remove the parameter I can override it fine.
Any ideas?
TIA
MeonR