AmitDiwan has Published 10740 Articles

Decimal.Multiply() Method in C#

AmitDiwan

AmitDiwan

Updated on 13-Nov-2019 05:56:51

1K+ Views

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

Int64.GetHashCode Method in C# with Examples

AmitDiwan

AmitDiwan

Updated on 13-Nov-2019 05:54:55

171 Views

The Int64.GetHashCode() method in C# is used to return the hash code for this instance.SyntaxFollowing is the syntax −public override int GetHashCode ();ExampleLet us now see an example to implement the Int64.GetHashCode() method −using System; public class Demo {    public static void Main(){       long val1 = ... Read More

Int64.Equals Method in C# with Examples

AmitDiwan

AmitDiwan

Updated on 13-Nov-2019 05:52:48

181 Views

The Int64.Equals() method in C# is used to return a value indicating whether this instance is equal to a specified object or Int64.SyntaxFollowing is the syntax −public bool Equals (long ob); public override bool Equals (object ob);Above, the parameter ob is an Int64 value to compare to this instance, whereas ... Read More

Int64.CompareTo Method in C# with Examples

AmitDiwan

AmitDiwan

Updated on 13-Nov-2019 05:50:43

249 Views

The Int64.CompareTo() method in C# is used to compare this instance to a specified object or Int64 and returns an indication of their relative values.SyntaxFollowing is the syntax −public int CompareTo (long val); public int CompareTo (object val);Above, in the 1st syntax, the value Val is an integer to compare. ... Read More

Int32.MinValue Field in C# with Examples

AmitDiwan

AmitDiwan

Updated on 13-Nov-2019 05:48:40

416 Views

The Int32.MaxValue field in C# is used to represent the smallest possible value of an Int32.SyntaxFollowing is the syntax −public const int MinValue = -2147483648;ExampleLet us now see an example to implement the Int32.MinValue field &miuns;sing System; public class Demo {    public static void Main(){       int ... Read More

UInt32.MinValue Field in C# with Examples

AmitDiwan

AmitDiwan

Updated on 13-Nov-2019 05:48:39

216 Views

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

UInt32.MaxValue Field in C# with Examples

AmitDiwan

AmitDiwan

Updated on 13-Nov-2019 05:47:09

334 Views

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

Int32.MaxValue Field in C# with Examples

AmitDiwan

AmitDiwan

Updated on 13-Nov-2019 05:46:35

638 Views

The Int32.MaxValue field in C# is used to represent the largest possible value of an Int32.SyntaxFollowing is the syntax −public const int MaxValue = 2147483647;ExampleLet us now see an example to implement the Int32.MaxValue field −using System; public class Demo {    public static void Main(){       int ... Read More

Uri.Equals(Object) Method in C#

AmitDiwan

AmitDiwan

Updated on 13-Nov-2019 05:45:18

126 Views

The Uri.Equals() method in C# compares two Uri instances for equality.SyntaxFollowing is the syntax −public override bool Equals (object comparand);Above, the parameter comparand is the Uri instance or a URI identifier to compare with the current instance.ExampleLet us now see an example to implement the Uri.Equals() method −using System; public ... Read More

Uri.CheckSchemeName(String) Method in C#

AmitDiwan

AmitDiwan

Updated on 13-Nov-2019 05:42:50

175 Views

The Uri.CheckSchemeName() method in C# is used to determine whether the specified scheme name is valid.syntaxFollowing is the syntax −public static bool CheckSchemeName (string schemeName);Above, the parameter scheme name is the scheme name to validate.ExampleLet us now see an example to implement the Uri.CheckSchemeName() method −using System; public class Demo ... Read More

Advertisements