I don’t know how to write class which gona inherit from PathSegment class.
No matter how many parameters is in constructor This code give me error CS1729
<code>public class BindableLineSegment : PathSegment
{
public BindableLineSegment()
{
}
protected override Freezable CreateInstanceCore()
{
throw new NotImplementedException();
}
}
</code>
<code>public class BindableLineSegment : PathSegment
{
public BindableLineSegment()
{
}
protected override Freezable CreateInstanceCore()
{
throw new NotImplementedException();
}
}
</code>
public class BindableLineSegment : PathSegment
{
public BindableLineSegment()
{
}
protected override Freezable CreateInstanceCore()
{
throw new NotImplementedException();
}
}