AmitDiwan has Published 10740 Articles

Single.CompareTo() Method in C# with Examples

AmitDiwan

AmitDiwan

Updated on 03-Dec-2019 08:04:19

237 Views

The Single.CompareTo() method in C# is used to compare this instance to a specified object or to another Single instance and returns an integer that indicates whether the value of this instance is less than, equal to, or greater than the value of the specified object or the other Single ... Read More

BitConverter.ToDouble() Method in C#

AmitDiwan

AmitDiwan

Updated on 03-Dec-2019 08:00:36

266 Views

The BitConverter.ToDouble() method in C# is used to return a double-precision floating-point number converted from eight bytes at a specified position in a byte array.SynchronizedThe syntax is as follows −public static double ToDouble (byte[] val, int begnIndex);Above, val is the byte array, whereas begnIndex is the beginning position within val.ExampleLet ... Read More

BitConverter.ToInt16() Method in C#

AmitDiwan

AmitDiwan

Updated on 03-Dec-2019 07:58:14

297 Views

The BitConverter.ToInt16() method in C# is used to return a 16-bit signed integer converted from two bytes at a specified position in a byte array.SyntaxThe syntax is as follows −public static short ToInt16 (byte[] val, int begnIndex);Above, val is the byte array, whereas begnIndex is the beginning position within val.ExampleLet ... Read More

Double.GetHashCode() Method in C#

AmitDiwan

AmitDiwan

Updated on 03-Dec-2019 07:55:39

129 Views

The Double.GetHashCode() method in C# is used to return the hash code for this instance.SyntaxThe syntax is as follows −public override int GetHashCode ();ExampleLet us now see an example − Live Demousing System; public class Demo {    public static void Main(){       double d1 = 150d;     ... Read More

Single.ToString Method in C#

AmitDiwan

AmitDiwan

Updated on 03-Dec-2019 07:53:18

138 Views

The Single.ToString() method in C# is used to convert the numeric value of this instance to its equivalent string representation.SyntaxThe syntax is as follows −public override string ToString ();ExampleLet us now see an example − Live Demousing System; public class Demo {    public static void Main(){       float ... Read More

SortedDictionary.Item[] Property in C#

AmitDiwan

AmitDiwan

Updated on 03-Dec-2019 07:50:51

130 Views

The SortedDictionary.Item[] property in C# is used to get or set the value associated with the specified key.SyntaxThe syntax is as follows −public TValue this[TKey k] { get; set; }Above, the value k is the key of the value to get or set.ExampleLet us now see an example − Live Demousing ... Read More

SortedDictionary.Count Property in C#

AmitDiwan

AmitDiwan

Updated on 03-Dec-2019 07:44:04

143 Views

The SortedDictionary.Count property in C# is used to get the number of key/value pairs contained in the SortedDictionary.SyntaxThe syntax is as follows −public int Count { get; }ExampleLet us now see an example − Live Demousing System; using System.Collections; using System.Collections.Generic; public class Demo {    public static void Main(){   ... Read More

Queue.ToArray Method in C#

AmitDiwan

AmitDiwan

Updated on 03-Dec-2019 07:40:19

123 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

Stack.CopyTo() Method in C#

AmitDiwan

AmitDiwan

Updated on 03-Dec-2019 07:37:57

127 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

Queue.Synchronized() Method in C#

AmitDiwan

AmitDiwan

Updated on 03-Dec-2019 07:33:00

223 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

Advertisements