AmitDiwan has Published 10740 Articles

Char.IsPunctuation() Method in C#

AmitDiwan

AmitDiwan

Updated on 13-Nov-2019 06:28:45

595 Views

The Char.IsPunctuation() method in C# indicates whether the specified Unicode character is categorized as a punctuation mark.SyntaxFollowing is the syntax −public static bool IsPunctuation (char ch);Above, ch is the Unicode character to evaluate.ExampleLet us now see an example to implement the Char.IsPunctuation() method −using System; public class Demo {   ... Read More

MathF.Acos() Method in C# with Examples

AmitDiwan

AmitDiwan

Updated on 13-Nov-2019 06:27:23

168 Views

The MathF.Acos() method in C# is used to return the angle whose cosine is given as a float value argument.SyntaxFollowing is the syntax −public static float Acos (float val);Above, Val is the floating-point number.ExampleLet us now see an example to implement the MathF.Acos() method −using System; public class Demo { ... Read More

MathF.Abs() Method in C# with Examples

AmitDiwan

AmitDiwan

Updated on 13-Nov-2019 06:24:47

213 Views

The MathF.Abs() method in C# is used to return the absolute value of a float number.SyntaxFollowing is the syntax −public static float Abs (float val);Above, the parameter Val is the specified float number.ExampleLet us now see an example to implement the MathF.Abs() method −using System; public class Demo {   ... Read More

Int64.MinValue Field in C# with Examples

AmitDiwan

AmitDiwan

Updated on 13-Nov-2019 06:21:48

176 Views

The UInt64.MinValue field in C# represents the minimum value of the 64-bit unsigned integer.SyntaxFollowing is the syntax −public const ulong MinValue = 0;ExampleLet us now see an example to implement the UInt64.MinValue field −using System; public class Demo {    public static void Main(){       ulong val1 = ... Read More

Int64.MaxValue Field in C# with Examples

AmitDiwan

AmitDiwan

Updated on 13-Nov-2019 06:16:50

398 Views

The UInt64.MaxValue field in C# represents the maximum value of the 64-bit unsigned integer.SyntaxFollowing is the syntax −public const ulong MaxValue = 18446744073709551615;ExampleLet us now see an example to implement the UInt64.MaxValue field −using System; public class Demo {    public static void Main(){       ulong val1 = ... Read More

Int64.GetTypeCode Method in C# with Examples

AmitDiwan

AmitDiwan

Updated on 13-Nov-2019 06:14:59

149 Views

The Int64.GetTypeCode() method in C# is used to return the TypeCode for value type Int64.SyntaxFollowing is the syntax −public TypeCode GetTypeCode ();ExampleLet us now see an example to implement the Int64.GetTypeCode() method −using System; public class Demo {    public static void Main(){       long val1 = 0; ... Read More

Decimal.Subtract() Method in C#

AmitDiwan

AmitDiwan

Updated on 13-Nov-2019 06:12:52

607 Views

The Decimal.Subtract() method in C# is used to subtract two specified Decimal values.SyntaxFollowing is the syntax −public static decimal Subtract (decimal val1, decimal val2);Above, va1 is the minuend, whereas val2 is the subtrahend.ExampleLet us now see an example to implement the Decimal.Subtract() method −using System; public class Demo {   ... Read More

Decimal.Round() Method in C#

AmitDiwan

AmitDiwan

Updated on 13-Nov-2019 06:08:14

8K+ Views

The Decimal.Round() method in C# is used to round a value to the nearest integer or specified number of decimal places.SyntaxFollowing is the syntax −public static decimal Round (decimal d); public static decimal Round (decimal d, int decimals); public static decimal Round (decimal d, MidpointRounding mode); public static decimal Round ... Read More

Decimal.Remainder() Method in C#

AmitDiwan

AmitDiwan

Updated on 13-Nov-2019 06:03:17

280 Views

The Decimal.Remainder() method in C# is used to calculate the remainder after dividing two Decimal values.SyntaxFollowing is the syntax −public static decimal Remainder (decimal val1, decimal val2);Above, val1 is the dividend, whereas val2 is the divisor.ExampleLet us now see an example to implement the Decimal.Remainder() method −using System; public class ... Read More

Decimal.Negate() Method in C#

AmitDiwan

AmitDiwan

Updated on 13-Nov-2019 05:58:59

719 Views

The Decimal.Negate() method in C# is used to return the result of multiplying the specified Decimal value by negative one.SyntaxFollowing is the syntax −public static decimal Negate (decimal val);Above, Val is the value to negate.ExampleLet us now see an example to implement the Decimal.Negate() method −using System; public class Demo ... Read More

Advertisements