Math.Atan Returns the angle whose tangent is the specified number.
using System; class Sample { public static void Main() { double angle; double radians; radians = Math.Atan(1.2); angle = radians * (180 / Math.PI); Console.WriteLine(angle); } }