Math.Tan Method returns the tangent of the specified angle.
using System; class Sample { public static void Main() { double angle; double radians; double result; // Calculate the tangent of 30 degrees. angle = 30; radians = angle * (Math.PI / 180); result = Math.Tan(radians); Console.WriteLine("The tangent of 30 degrees is {0}.", result); } }