C-Sharp DivRem Example – Code Sample Syntax
C-Sharp DivRem Example – Code Sample Syntax Purpose: – Illustrates using C-Sharp DivRem Code Example. View Other C-Sharp Math Function Source Code Examples Purpose: takes an dividend, divisor, and remainder as Int32 or Int64 and returns quotient as same data type. Remainder is passed by reference and it gets updated with the remainder when the function executes. Syntax: DivRem(dividend32, divisor32,... [Read More...]
C-Sharp Cosh Example – Code Sample Syntax
C-Sharp Cosh Example – Code Sample Syntax Purpose: – Illustrates using C-Sharp Cosh Code Example. View Other C-Sharp Math Function Source Code Examples Purpose: takes an angle specified in radians (to convert degrees to radians multiply degrees by 180/Math.PI) and returns the hyperbolic cosine for the angle as a double data type. Syntax: Cosh(doublenumber) Parameters Description doublenumber double percision... [Read More...]
C-Sharp Cos Example – Code Sample Syntax
C-Sharp Cos Example – Code Sample Syntax Purpose: – Illustrates using C-Sharp Cos Code Example. View Other C-Sharp Math Function Source Code Examples Purpose: converts an angle measured in radians to a cosine. (you can convert the radians to degrees by multiplying them by Math.PI/180) Syntax: Cos(doublenumber) Parameters Description doublenumber double percision floating point number representing an... [Read More...]
C-Sharp Ceiling Example – Code Sample Syntax
C-Sharp Ceiling Example – Code Sample Syntax Purpose: – Illustrates using C-Sharp Ceiling Code Example. View Other C-Sharp Math Function Source Code Examples Purpose: takes a decimal or double number and returns a value that represents the next equal or higher whole number. Although the result is a whole number, it is returned as a the same data type that was passed in. Math.Floor is different ... [Read More...]
C-Sharp BigMul Example – Code Sample Syntax
C-Sharp BigMul Example – Code Sample Syntax Purpose: – Illustrates using C-Sharp BigMul Code Example. View Other C-Sharp Math Function Source Code Examples Purpose: takes 2 32-bit integer numbers and returns their full product as a 64-bit integer Syntax: BigMul(int1 as Int32, int2 as Int32) Parameters Description int1 Int32 int2 Int32 Result Data Type Description 64 bit integer full product of 2 inputs Quick... [Read More...]
C-Sharp Atan2 Example – Code Sample Syntax
C-Sharp Atan2 Example – Code Sample Syntax Purpose: – Illustrates using C-Sharp Atan2 Code Example. View Other C-Sharp Math Function Source Code Examples Purpose: takes 2 double data type numbers and returns a double value containing the angle (measured in radians) whose tangent is the quotient of two specified numbers (you can convert the radians to degrees by multiplying them by Math.PI/180) Syntax:... [Read More...]
C-Sharp Atan Example – Code Sample Syntax
C-Sharp Atan Example – Code Sample Syntax Purpose: – Illustrates using C-Sharp Atan Code Example. View Other C-Sharp Math Function Source Code Examples Purpose: converts a tangent to radians of an angle. The function takes a double data type number and returns a double value that repesents the radians of the angle for that tangent. (you can convert the radians to degrees by multiplying ... [Read More...]
C-Sharp Asin Example – Code Sample Syntax
C-Sharp Asin Example – Code Sample Syntax Purpose: – Illustrates using C-Sharp Asin Code Example. View Other C-Sharp Math Function Source Code Examples Purpose: takes a double data type number that represents a sine and returns a double value that represents the angle of that sine when measured in radians. (you can convert the radians to degrees by multiplying them by Math.PI/180) Syntax: Asin(double) ... [Read More...]
C-Sharp Acos Example – Code Sample Syntax
C-Sharp Acos Example – Code Sample Syntax Purpose: – Illustrates using C-Sharp Acos Code Example. View Other C-Sharp Math Function Source Code Examples Purpose: takes a cosine as double data type number and returns a double value that represents the angle in radians (you can convert the radians to degrees by multiplying them by Math.PI/180) Syntax: Acos(double) Parameters Description double Any valid... [Read More...]
C-Sharp Abs Example – Code Sample Syntax
C-Sharp Abs Example – Code Sample Syntax Purpose: – Illustrates using C-Sharp Abs Code Example. View Other C-Sharp Math Function Source Code Examples Purpose: Returns the absolute value for the data type that was passed in. Syntax: Abs(expression) Parameters Description expression 1. decimal – returns decimal number 2. double – returns double-percision floating point number 3. int16 –... [Read More...]
Truncate Example Syntax VB.NET ASP.NET | Truncate | Source Code
Truncate Example Syntax VB.NET ASP.NET | Truncate | Source Code Summary: – Illustrates using Truncate with Source Code Syntax Example in VB.NET ASP.NET. View Other VB.NET ASP.NET Source Code Examples Purpose: takes a decimal or double as input parameter1 and returns the number truncated without the fractional decimals. Syntax: 1. Truncate(decimal) 2. Truncate(double) Parameters Description Parameter1 Result Data... [Read More...]