|
Is there anything in J# equivalent to the toFixed() method in JScript?
Because I was playing around with JScript and this works EXACTLY like I was
hoping to get some J# code to work:
var sngPi = 3.14159265358979;
document.write(Math.sin((121 / 180) * sngPi).toFixed(15));
|