Mega Code Archive

 
Categories / C# / Development Class
 

Math Sinh Method returns the hyperbolic sine of the specified angle

using System; class SinhCosh  {     public static void Main()      {         UseSinhCosh(4.9);     }     static void UseSinhCosh(double arg)     {         double sinhArg = Math.Sinh(arg);         double coshArg = Math.Cosh(arg);         Console.WriteLine(sinhArg );     } }