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
public class BindableLineSegment : PathSegment
{
public BindableLineSegment()
{
}
protected override Freezable CreateInstanceCore()
{
throw new NotImplementedException();
}
}