Is there a library for decimal calculation, especially the Pow(decimal, decimal) method? I can\'t find any.
Pow(decimal, decimal)
It can be free or commercial, either way, as
wait, huh? why can't you use doubles? you could always cast if you're using ints or something:
int a = 1; int b = 2; int result = (int)Math.Pow(a,b);