AmitDiwan has Published 11365 Articles

UInt32.MinValue Field in C# with Examples

AmitDiwan

AmitDiwan

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

130 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

196 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

334 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

65 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

78 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

Uri.CheckHostName(String) Method in C#

AmitDiwan

AmitDiwan

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

237 Views

The Uri.CheckHostName() method in C# is used to determine whether the specified hostname is a valid DNS name.SyntaxFollowing is the syntax −public static UriHostNameType CheckHostName (string host_name);ExampleLet us now see an example to implement the Uri.CheckHostName() method −using System; public class Demo {    public static void Main(){     ... Read More

UInt64.ToString() Method in C# with Examples

AmitDiwan

AmitDiwan

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

350 Views

The UInt64.ToString() method in C# is used to convert the numeric value of the current UInt64 instance to its equivalent string representation.SyntaxFollowing is the syntax −public override string ToString();ExampleLet us now see an example to implement the UInt64.ToString() method −using System; public class Demo {    public static void Main(){ ... Read More

jQuery focusout() with Example

AmitDiwan

AmitDiwan

Updated on 12-Nov-2019 12:50:57

683 Views

The focusout() method in jQuery occurs when an element loses focus.SyntaxThe syntax is as follows −$(selector).focusout(function)ExampleLet us now see an example to implement the jQuery focusout() method −    .demo {       color: blue;    }    $(document).ready(function(){       $("input").focusin(function(){ ... Read More

jQuery addClass() with Example

AmitDiwan

AmitDiwan

Updated on 12-Nov-2019 12:48:53

437 Views

The addClass() method in jQuery is used to add one or more class names to the selected elements.ExampleLet us now see an example to implement the jQuery addClass() method −    .demo * {       display: block;       border: 3px dashed red;   ... Read More

jQuery finish() with Example

AmitDiwan

AmitDiwan

Updated on 12-Nov-2019 12:44:51

129 Views

The finish() method in jQuery is used to stop the currently-running animations. It removes all queued animations and completes all animations for the selected elements.SyntaxThe syntax is as follows −$(selector).finish(queue)Above, the queue parameter is the name of the queue to stop animation.ExampleLet us now see an example to implement the ... Read More

Advertisements