CSharp examples for System:Math Geometry
Asin
using System.Globalization; using System.Collections.Generic; using System;/*from w w w . ja va2 s . c o m*/ public class Main{ static double Asin(double number) { return Math.Asin(number) / (Math.PI / 180); } }