I was wondering if the above was at all possible. For example:
Math.Sqrt(myVariableHere);
When looking at the overload, it requires a doub
Math.Sqrt((double)myVariableHere);
Will give you back a double that's the square root of your decimal myVariableHere.
decimal
myVariableHere