Inherited property (P1) is not accessable from w/cscript.
Class structure looks something like this :
[ComVisible]
public interface IA
{
strin
The code seems fine and it should work as intended except of course that you have omitted the return type of the two properties, they should be:
[ComVisible]
public abstract class Base : IA
{
public string P1{get{return "somestring";}}
}
[ComVisible]
public class Concrete : Base, IB
{
public string P2{get{return "P2somestring";}}
}
But I am assuming this is just an overlook in the code you wrote in your post.