计算 a^b,其中 b 是 c# 中的负指数

Noo*_*ook 0 c# exponent

例如,我试图在 C# 中计算 9704 −36。我该怎么做呢?我正在使用 Visual C# 2010 Express

Dav*_*nan 5

使用Math.Pow(9704, -36). C# 没有专用的求幂运算符并Math.Pow填补了空白。