AmitDiwan has Published 10744 Articles

Stack.Push() Method in C#

AmitDiwan

AmitDiwan

Updated on 04-Dec-2019 12:54:10

727 Views

The Stack.Push() method in C# is used to insert an object at the top of the Stack.SyntaxThe syntax is as follows −public virtual void Push (object ob);Above, the parameter ob is the object to push onto the stack.ExampleLet us now see an example − Live Demousing System; using System.Collections; public class ... Read More

Single.IsNegativeInfinity() Method in C# with Examples

AmitDiwan

AmitDiwan

Updated on 04-Dec-2019 12:49:35

92 Views

The Single.IsNegative() method in C# returns a value indicating whether the specified number evaluates to negative infinity.SyntaxThe syntax is as follows −public static bool IsNegativeInfinity (float val);Above, the parameter val is a single-precision floating-point number.ExampleLet us now see an example − Live Demousing System; public class Demo {    public static ... Read More

SByte.CompareTo() Method in C# with Examples

AmitDiwan

AmitDiwan

Updated on 04-Dec-2019 12:46:08

79 Views

The SByte.CompareTo() method in C# is used to compare this instance to a specified object or SByte and returns an indication of their relative values.SyntaxThe syntax is as follows −public int CompareTo (sbyte val); public int CompareTo (object ob);Above, the parameter val is an 8-bit signed integer to compare, whereas ... Read More

Stack.ToString() Method in C# with examples

AmitDiwan

AmitDiwan

Updated on 04-Dec-2019 12:43:14

1K+ Views

The Stack.ToString() method in C# is used to get the string representation of the Stack class object.SyntaxThe syntax is as follows −public string ToString ();ExampleLet us now see an example − Live Demousing System; using System.Collections; public class Demo {    public static void Main() {       Stack stack ... Read More

Stack.ToArray() Method in C#

AmitDiwan

AmitDiwan

Updated on 04-Dec-2019 12:38:36

300 Views

The Stack.ToArray() method in C# is used to copy the Stack to a new array.SyntaxThe syntax is as follows −public virtual object[] ToArray ();ExampleLet us now see an example − Live Demousing System; using System.Collections; public class Demo {    public static void Main() {       Stack stack = ... Read More

Stack.Synchronized() Method in C#

AmitDiwan

AmitDiwan

Updated on 04-Dec-2019 12:33:33

105 Views

The Stack.Synchronized() method in C# is used to returns a synchronized (thread safe) wrapper for the Stack.SyntaxThe syntax is as follows −public static System.Collections.Stack Synchronized (System.Collections.Stack stack);Above, the parameter stack is the stack to synchronize.ExampleLet us now see an example − Live Demousing System; using System.Collections; public class Demo {   ... Read More

Single.IsNaN() Method in C# with Examples

AmitDiwan

AmitDiwan

Updated on 04-Dec-2019 12:28:12

178 Views

The Single.IsNan() method in C# is used to return a value that indicates whether the specified value is not a number (NaN).SyntaxThe syntax is as follows −public static bool IsNaN (float f);Above, the parameter val is a single-precision floating-point number.ExampleLet us now see an example − Live Demousing System; public class ... Read More

Stack.Clear() Method in C#

AmitDiwan

AmitDiwan

Updated on 04-Dec-2019 12:24:23

253 Views

The Stack.Clear() method in C# is used to removes all objects from the Stack.SyntaxThe syntax is as follows −public virtual void Clear ();ExampleLet us now see an example − Live Demousing System; using System.Collections; public class Demo {    public static void Main() {       Stack stack = new ... Read More

Queue.Peek Method in C#

AmitDiwan

AmitDiwan

Updated on 04-Dec-2019 12:14:03

403 Views

The Queue.Peek() method in C# is used to return the object at the beginning of the Queue without removing it.SyntaxThe syntax is as follows −public virtual object Peek ();ExampleLet us now see an example − Live Demousing System; using System.Collections; public class Demo {    public static void Main() {   ... Read More

Queue.IsSynchronized Property in C#

AmitDiwan

AmitDiwan

Updated on 04-Dec-2019 12:09:31

93 Views

The Queue.IsSynchronized() method in C# is used to GET a value indicating whether access to the Queue is synchronized (thread safe).SyntaxThe syntax is as follows −public virtual bool IsSynchronized { get; }ExampleLet us now see an example − Live Demousing System; using System.Collections; public class Demo {    public static void ... Read More

Advertisements