×

C# Tutorial

Basics of .Net

C# Basics

C# Fundamentals

C# Operators

C# Loops

C# Type Conversions

C# Exception Handling

C# String Class

C# Arrays

C# List

C# Stack

C# Queue

C# Collections

C# Character Class

C# Class and Object

C# Namespaces

C# Delegates

C# Constructors

C# Inheritance

C# Operator Overloading

C# Structures

C# File Handling

C# Convert.ToInt32()

C# Int32 (int) Struct

C# DateTime Class

C# Uri Class

C# Database Connectivity

C# Windows

C# Other Topics

C# Q & A

C# Programs

C# Find O/P

C# - Math.Sinh() Method with Example

In this tutorial, we will learn about the C# Math.Sinh() method with its definition, usage, syntax, and example. By Nidhi Last updated : March 29, 2023

C# Math.Sinh() Method

The Math.Sinh() method is used to return the hyperbolic Sine of a specified angle.

Syntax

double Math.Sinh(double angle);

Parameter(s)

  • angle : Given angle, for this we got hyperbolic sine value.

Return Value

It returns hyperbolic sine of specified angle.

C# Example of Math.Sinh() Method

The source code to demonstrate the use of Sinh() method of Math class is given below. The given program is compiled and executed successfully.

using System;

class Sample {
  //Entry point of Program
  static public void Main() {
    double HyperSine = 0.0;

    HyperSine = Math.Sinh(0.7);
    System.Console.WriteLine("Hyperbolic sine of 0.7 is : " + HyperSine);
  }
}

Output

Hyperbolic sine of 0.7 is : 0.758583701839534
Press any key to continue . . .

C# Math Class Programs »

Advertisement
Advertisement

Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

Copyright © 2025 www.includehelp.com. All rights reserved.