如何在string.format中显示2的幂?
analysis = String.Format("\nFormula: a^2 + b^2 = c^2");
我想用与HTML页面相同的方式代替a ^ 2。
<strong>Formula: a<sup>2</sup> + b<sup>2</sup> = c<sup>2</sup></strong>
答案 0 :(得分:1)
String.Format不支持将字符转换为上标。您需要自己找到正确的字符,然后将那些传递给String.Format。