I want to be able to put a formatted mathematic equation into my XML comments, is there a plugin to allow me to do this or maybe some other way?
I am currently using this:
/// <summary>
/// e^-x/(1+e^-x)^2
/// </summary>
public double Sigmoid(x) => 1 / (1 + Math.Exp(-x));
But this doesn't seem like a very good solution.
I appreciate any answers.