AmitDiwan has Published 11365 Articles

Math.Exp() Method in C#

AmitDiwan

AmitDiwan

Updated on 04-Nov-2019 10:06:36

137 Views

The Math.Exp() method in C# is used to return e raised to the specified power.Syntaxpublic static double Exp (double val);Here, Val is the power.If Val equals NaN or PositiveInfinity, that value is returned. However, if d equals NegativeInfinity, 0 is returned.Let us now see an example to implement Math.Exp() method ... Read More

Math.DivRem() Method in C#

AmitDiwan

AmitDiwan

Updated on 04-Nov-2019 10:03:47

2K+ Views

The Math.DivRem() method in C# is used to divide and calculate the quotient of two numbers and also returns the remainder in an output parameter.Syntaxpublic static int DivRem (int dividend, int divisor, out int remainder); public static long DivRem (long dividend, long divisor, long remainder);Let us now see an example ... Read More

Char.IsWhiteSpace() Method in C#

AmitDiwan

AmitDiwan

Updated on 04-Nov-2019 09:59:10

276 Views

The Char.IsWhiteSpace() method in C# is used to indicate whether the specified Unicode character is white space.Syntaxpublic static bool IsWhiteSpace (char ch);Above, the parameter ch is the Unicode character to evaluate.Let us now see an example to implement the Char.IsWhiteSpace() method −Exampleusing System; public class Demo {    public static ... Read More

Dictionary.Clear Method in C#

AmitDiwan

AmitDiwan

Updated on 04-Nov-2019 09:57:21

2K+ Views

The Dictionary.Clear() method in C# removes all key/value pairs from the Dictionary.Syntaxpublic void Clear();Let us now see an example to implement the Dictionary.Clear() method −Exampleusing System; using System.Collections.Generic; public class Demo {    public static void Main(){       Dictionary dict =       new Dictionary();     ... Read More

CharEnumerator.Dispose() Method in C#

AmitDiwan

AmitDiwan

Updated on 04-Nov-2019 09:53:38

63 Views

The CharEnumerator.Dispose() method in C# is used to release all resources used by the current instance of the CharEnumerator class.Syntaxpublic void Dispose ();Let us now see an example to implement the CharEnumerator.Dispose() method −Exampleusing System; public class Demo {    public static void Main(){       string strNum = ... Read More

CharEnumerator.Clone() Method in C#

AmitDiwan

AmitDiwan

Updated on 04-Nov-2019 09:51:58

42 Views

The CharEnumerator.Clone() method in C# is used to create a copy of the current CharEnumerator object.Syntaxpublic object Clone();Let us now see an example to implement the CharEnumerator.Clone() method −Exampleusing System; public class Demo {    public static void Main(){       string strNum = "356";       CharEnumerator ... Read More

Array.Clear() Method in C#

AmitDiwan

AmitDiwan

Updated on 04-Nov-2019 09:50:00

258 Views

The Array.Clear() method in C# is used to clear the elements in an array and set them to its default. The elements are cleared in a range. The syntax is as follows −Syntaxpublic static void Clear (Array arr, int index, int len);Here, arr is the array whose elements are to ... Read More

Array.AsReadOnly(T[]) Method in C#

AmitDiwan

AmitDiwan

Updated on 04-Nov-2019 08:16:34

147 Views

The Array.AsReadOnly(T[]) method in C# returns a read-only wrapper for the specified array, which is the read-only ReadOnlyCollection.Syntaxpublic static System.Collections.ObjectModel.ReadOnlyCollection AsReadOnly (T[] array);Here, T is the type of the elements of the array, whereas array T[] is the one-dimensional zero-based array.Let us now see an example to implement the Array.AsReadOnly(T[]) ... Read More

Char.IsUpper() Method in C#

AmitDiwan

AmitDiwan

Updated on 04-Nov-2019 08:14:09

1K+ Views

The Char.IsUpper() method in C# indicates whether the specified Unicode character is categorized as an uppercase letter.Syntaxpublic static bool IsUpper (char ch);Above, the parameter ch is the Unicode character to evaluate.Let us now see an example to implement the Char.IsUpper() method −Exampleusing System; public class Demo {    public static ... Read More

Char.IsSymbol() Method in C#

AmitDiwan

AmitDiwan

Updated on 04-Nov-2019 08:10:17

297 Views

The Char.IsSymbol() method in C# is indicating whether the character at the specified position in a specified string is categorized as a symbol character.Syntaxpublic static bool IsSymbol (string str, int index);Above, str is a string, whereas the position of the character to evaluate in str.Let us now see an example ... Read More

Advertisements