In v2, you can get a cubic spline interpolation by using the class directly from the MathNet.Numerics.Interpolation.Algorithms namespace:
var spline = new CubicSplineInterpolation(new[] {0.0, 4.0, 9.0, 16.0}, new[] {10.0, 7.0, 12.0, 10.0});