I want to derive a class from Microsoft.Kinect.JointCollection
class.
public class Derived : JointCollection
{
public string NewItem;
public Derived ()
{
}
}
Error:
The type 'Microsoft.Kinect.JointCollection' has no constructors defined.
What is the problem and how can I solve it?