You could also use using as a sorta typedef within a file:
using Vector = MathNet.Numerics.LinearAlgebra.Double.DenseVector; using Matrix = MathNet.Numerics.LinearAlgebra.Complex.DenseMatrix; ... var v = new Vector(5); var m = new Matrix(5, 5);
This should also get you access to the extension methods.