Asin - CSharp System

CSharp examples for System:Math Geometry

Description

Asin

Demo Code


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); }
}

Related Tutorials