Server Side Programming Articles - Page 2117 of 2650

Char.TryParse() Method in C#

AmitDiwan
Updated on 04-Nov-2019 10:59:21

468 Views

The Char.TryParse() method in C# is used to convert the value of the specified string to its equivalent Unicode character.Syntaxpublic static bool TryParse (string str, out char res);Let us now see an example to implement the Char.TryParse () method −Exampleusing System; public class Demo {    public static void Main(){       bool res;       Char ch;       res = Char.TryParse("10", out ch);       Console.WriteLine(res);       Console.WriteLine(ch.ToString());    } }OutputThis will produce the following output −FalseLet us now see another example −Exampleusing System; public class Demo {    public static void ... Read More

Char.ToUpperInvariant(Char) Method in C#

AmitDiwan
Updated on 04-Nov-2019 10:57:49

220 Views

The Char.ToUpperInvariant() method in C# is used to convert the value of a Unicode character to its uppercase equivalent using the casing rules of the invariant culture.Syntaxpublic static char ToUpperInvariant (char ch);Above, the parameter ch is the Unicode character to convert.Let us now see an example to implement the Char.ToUpperInvariant() method −Exampleusing System; public class Demo {    public static void Main(){       char ch = 'q';       char res = Char.ToUpperInvariant(ch);       Console.WriteLine("Value = "+ch);       Console.WriteLine("Uppercase Equivalent = "+res);    } }OutputThis will produce the following output −Value = q ... Read More

Math.Log10() Method in C#

AmitDiwan
Updated on 04-Nov-2019 10:55:43

388 Views

The Math.Log10() method in C# is returned to the base 10 logarithms of a specified number.Syntaxpublic static double Log10 (double val);Here, Val is the number whose logarithm we want.The Log10() method returns −Val parameterReturnsPositiveThe base 10 log of d; that is, log 10d.ZeroNegativeInfinityNegativeNaNEqual to NaNNaNEqual to PositiveInfinityPositiveInfinityLet us now see an example to implement Math.Log10() method −Exampleusing System; public class Demo {    public static void Main(){       double val1 = Double.PositiveInfinity; ;       double val2 = Double.NegativeInfinity;       Console.WriteLine(Math.Log10(val1));       Console.WriteLine(Math.Log10(val2));    } }OutputThis will produce the following output −∞ NaNLet ... Read More

Math.Log() Method in C#

AmitDiwan
Updated on 04-Nov-2019 10:52:30

1K+ Views

The Math.Log() method in C# is used to return the logarithm of a specified number.Syntaxpublic static double Log(double num) public static double Log(double num, double base)Above, num is the specified number whose logarithm is to be calculated. Here, the base is the base of the logarithm.Let us now see an example to implement the Math.Log() method −Exampleusing System; public class Demo {    public static void Main(){       double val1 = 2.15;       double val2 = -2.15;       Console.WriteLine(Math.Log(val1));       Console.WriteLine(Math.Log(val2));    } }OutputThis will produce the following output −0.765467842139571 NaNExampleLet us ... Read More

Math.IEEERemainder() Method in C#

AmitDiwan
Updated on 04-Nov-2019 10:40:18

76 Views

The Math.IEEERemainder() method in C# is used to return the remainder resulting from the division of a specified number by another specified number.Syntaxpublic static double IEEERemainder (double dividend, double divisor);Let us now see an example to implement Math.IEEERemainder() method −Exampleusing System; public class Demo {    public static void Main(){       double val1 = 90;       double val2 = 7;       // IEEE Remainder       var rem = Math.IEEERemainder(val1, val2);       Console.WriteLine(rem);    } }OutputThis will produce the following output −-1Let us see another example to implement Math.IEEERemainder() method −Exampleusing ... Read More

Type.GetDefaultMembers() Method in C#

AmitDiwan
Updated on 04-Nov-2019 10:37:17

96 Views

The Type.GetDefaultMembers() method in C# is used to search for the members defined for the current Type whose DefaultMemberAttribute is set.Syntaxpublic virtual System.Reflection.MemberInfo[] GetDefaultMembers ();Let us now see an example to implement the Type.GetDefaultMembers() method −Exampleusing System; using System.Reflection; [DefaultMemberAttribute("subject")] public class Demo {    public static void Main(){       Type t = typeof(Demo);       MemberInfo[] member = t.GetDefaultMembers();       if (member.Length != 0){          for (int i = 0; i < member.Length; i++)          Console.WriteLine("{0}", member[i]);       }       else {     ... Read More

Type.GetArrayRank() Method in C#

AmitDiwan
Updated on 04-Nov-2019 10:35:11

108 Views

The Type.GetArrayRank() method in C# gets the number of dimensions in an array.Syntaxpublic virtual int GetArrayRank ();Let us now see an example to implement the Type.GetArrayRank() method −Exampleusing System; public class Demo {    public static void Main(string[] args) {       Type type = typeof(int[, , ]);       int arrRank = type.GetArrayRank();       Console.WriteLine("Array Rank = {0}", arrRank);    } }OutputThis will produce the following output −Array Rank = 3Let us now see another example to implement the Type.GetArrayRank() method −Exampleusing System; public class Demo {    public static void Main(string[] args) {   ... Read More

Type.Equals() Method in C#

AmitDiwan
Updated on 04-Nov-2019 10:31:27

889 Views

The Type.Equals() method in C# determines if the underlying system type of the current Type is the same as the underlying system type of the specified Object or Type.Syntaxpublic virtual bool Equals (Type o); public override bool Equals (object o);Above, the parameters are the object whose underlying system type is to be compared with the underlying system type of the current Type.Let us now see an example to implement the Type.Equals() method −using System; public class Demo {    public static void Main(string[] args) {       Type val1 = typeof(System.UInt16);       Type val2 = typeof(System.Int32);   ... Read More

Tuple Class in C#

AmitDiwan
Updated on 04-Nov-2019 10:29:26

135 Views

The Tuple class represents a 7-tuple, which is called septet. A tuple is a data structure that has a sequence of elements.It is used in −Easier access to a data set.Easier manipulation of a data set.To represent a single set of data.To return multiple values from a methodTo pass multiple values to a methodIt has seven properties −Item1− Get the value of the current Tuple object's first component.Item2− Get the value of the current Tuple object's second component.Item3− Get the value of the current Tuple object's third component.Item4− Get the value of the current Tupleobject's fourth component.Item5− Get the value ... Read More

Tuple Class in C#

AmitDiwan
Updated on 04-Nov-2019 10:26:19

140 Views

The Tuple class represents a 6-tuple. A tuple is a data structure that has sequence of elements.It is used in −Easier access to a data set.Easier manipulation of a data set.To represent a single set of data.To return multiple values from a methodTo pass multiple values to a methodIt has six properties −Item1− Get the value of the current Tuple object's first component.Item2− Get the value of the current Tuple object's second component.Item3− Get the value of the current Tuple object's third component.Item4− Get the value of the current Tuple object's fourth component.Item5− Get the value of the current Tuple ... Read More

Advertisements