I assume you want the squared L2-norm (which is what Iridium did if I remember correctly).
// straight forward, simply square the L2-norm directly:
var squaredNorm1 = Math.Pow(v.L2Norm(),2);
// alternative using dot product, much shorter and likely also faster:
var squaredNorm2 = v*v;