Server Side Programming Articles - Page 2045 of 2646

Stack.Push() Method in C#

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

751 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 Demo {    public static void Main() {       Stack stack = new Stack();       stack.Push(150);       stack.Push(300);       stack.Push(500);       stack.Push(750);       stack.Push(1000);       stack.Push(1250);       stack.Push(1500);       stack.Push(2000);     ... Read More

Single.IsNegativeInfinity() Method in C# with Examples

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

107 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 void Main() {       float f1 = 5.0f/0.0f;       float f2 = 0.0f/0.0f;       Console.WriteLine("Value1 = "+f1);       Console.WriteLine("Hashcode for Value1 = "+f1.GetHashCode());       Console.WriteLine("TypeCode for Value1 = "+f1.GetTypeCode());       Console.WriteLine("Is Value1 value is positive or negative infinity? ... Read More

SByte.CompareTo() Method in C# with Examples

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

96 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 ob for the 2nd syntax is an object to compare.ExampleLet us now see an example − Live Demousing System; public class Demo {    public static void Main() {       sbyte s1 = 55;       sbyte s2 = 55;       Console.WriteLine("Value of S1 = "+s1); ... Read More

Stack.ToString() Method in C# with examples

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 = new Stack();       stack.Push(150);       stack.Push(300);       stack.Push(500);       stack.Push(750);       stack.Push(1000);       stack.Push(1250);       stack.Push(1500);       stack.Push(2000);       stack.Push(2500);       Console.WriteLine("Stack elements...");       foreach(int val in ... Read More

Stack.ToArray() Method in C#

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

317 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 = new Stack();       stack.Push("Inspiron");       stack.Push("Alienware");       stack.Push("Projectors");       stack.Push("Monitors");       stack.Push("XPS");       stack.Push("Laptop");       stack.Push("Notebook");       Console.WriteLine("Stack elements...");       foreach(string val in stack) {          Console.WriteLine(val);     ... Read More

Stack.Synchronized() Method in C#

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

125 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 {    public static void Main() {       Stack stack = new Stack();       stack.Push(150);       stack.Push(300);       stack.Push(500);       stack.Push(750);       stack.Push(1000);       stack.Push(1250);       stack.Push(1500);       stack.Push(2000);       stack.Push(2500);   ... Read More

Single.IsNaN() Method in C# with Examples

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

206 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 Demo {    public static void Main() {       float f1 = 5.0f/0.0f;       float f2 = 45.5f;       Console.WriteLine("Value1 = "+f1);       Console.WriteLine("Hashcode for Value1 = "+f1.GetHashCode());       Console.WriteLine("TypeCode for Value1 = "+f1.GetTypeCode());       Console.WriteLine("Is Value1 value ... Read More

Stack.Clear() Method in C#

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

265 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 Stack();       stack.Push("Inspiron");       stack.Push("Alienware");       stack.Push("Projectors");       stack.Push("Monitors");       stack.Push("XPS");       stack.Push("Laptop");       stack.Push("Notebook");       Console.WriteLine("Stack elements...");       foreach(string val in stack) {          Console.WriteLine(val);       ... Read More

Queue.Peek Method in C#

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

426 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() {       Queue queue = new Queue();       queue.Enqueue("AB");       queue.Enqueue("BC");       queue.Enqueue("CD");       queue.Enqueue("DE");       queue.Enqueue("EF");       queue.Enqueue("FG");       queue.Enqueue("GH");       queue.Enqueue("HI");       Console.WriteLine("Queue...");       IEnumerator demoEnum = queue.GetEnumerator(); ... Read More

Queue.IsSynchronized Property in C#

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

127 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 Main() {       Queue queue = new Queue();       queue.Enqueue(100);       queue.Enqueue(200);       queue.Enqueue(300);       queue.Enqueue(400);       queue.Enqueue(500);       queue.Enqueue(600);       queue.Enqueue(700);       queue.Enqueue(800);       queue.Enqueue(900);       queue.Enqueue(1000); ... Read More

Advertisements