
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
AmitDiwan has Published 10744 Articles

AmitDiwan
102 Views
The Queue.ToArray() method in C# copies the Queue elements 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.Generic; public class Demo { public static void Main(){ Queue queue = new Queue(); ... Read More

AmitDiwan
113 Views
The Stack.CopyTo() method in C# is used to copy the Stack to an existing one-dimensional Array, beginning at the specified array index.SyntaxThe syntax is as follows −public virtual void CopyTo (Array arr, int index);Above, the parameter arr is the one-dimensional Array that is the destination of the elements copied from ... Read More

AmitDiwan
209 Views
The Queue.Synchronized() method in C# is used to return a new Queue that wraps the original queue and is thread-safe.SyntaxThe syntax is as follows −public static System.Collections.Queue Synchronized (System.Collections.Queue queue);Above, the parameter queue is the queue to synchronize.ExampleLet us now see an example − Live Demousing System; using System.Collections; public class ... Read More

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

AmitDiwan
172 Views
The Queue.Equals() method in C# is used to check if a queue object is equal to another queue object.SyntaxThe syntax is as follows −public virtual bool Equals (object obj);Above, the parameter obj is for comparison.ExampleLet us now see an example − Live Demousing System; using System.Collections.Generic; public class Demo { ... Read More

AmitDiwan
395 Views
The Queue.Enqueue() method in C# is used to add an object to the end of the Queue.SyntaxThe syntax is as follows −public virtual void Enqueue (object ob);Above, the parameter ob is the object to add to the Queue.ExampleLet us now see an example − Live Demousing System; using System.Collections.Generic; public class ... Read More

AmitDiwan
89 Views
The SortedDictionary.ContainsValue() method in C# is used to determine whether the SortedDictionary contains an element with the specified value.SyntaxThe syntax is as follows −public bool ContainsValue (TValue val);Above, the value val is the value to be searched in the SortedDictionary.ExampleLet us now see an example − Live Demousing System; using System.Collections; ... Read More

AmitDiwan
2K+ Views
The TimeSpan.Compare() method in C# is used to compare two TimeSpan values and returns an integer that indicates whether the first value is shorter than, equal to, or longer than the second value.The return value is -1 if span1 is shorter than span2, 0 if span1=span2, whereas 1 if span1 ... Read More

AmitDiwan
994 Views
The TimeSpan.Add() method in C# is used to return a new TimeSpan object whose value is the sum of the specified TimeSpan object and this instance.SyntaxThe syntax is as follows −public TimeSpan Add (TimeSpan span);Above, the parameter span is the time interval to add.ExampleLet us now see an example − Live ... Read More

AmitDiwan
111 Views
The Double.IsInfinity() method in C# is used to return a value indicating whether the specified number evaluates to negative or positive infinity.SyntaxThe syntax is as follows −public static bool IsInfinity (double d);Above, the value d is a double-precision floating-point number.ExampleLet us now see an example − Live Demousing System; public class ... Read More