Question: What does this mean and for what use would one implement this:
public class Parameter : Variable
{
public Parameter(NDArrayView value);
~Parameter();
public override void Dispose();
}
Of course, the question is specifically targeting this Method Constructor:
~Parameter();
Thank you.