AmitDiwan has Published 9818 Articles

DateTime.SpecifyKind() Method in C#

AmitDiwan

AmitDiwan

Updated on 07-Nov-2019 05:50:12

5K+ Views

The DateTime.SpecifyKind() method in C# is used to create a new DateTime object that has the same number of ticks as the specified DateTime but is designated as either local time, Coordinated Universal Time (UTC), or neither, as indicated by the specified DateTimeKind value.SyntaxFollowing is the syntax −public static DateTime ... Read More

Decimal.ToUInt16() Method in C#

AmitDiwan

AmitDiwan

Updated on 07-Nov-2019 05:48:06

87 Views

The Decimal.ToUInt16() method in C# is used to convert the value of the specified Decimal to the equivalent 16-bit unsigned integer.SyntaxFollowing is the syntax −public static ushort ToUInt16 (decimal val);Above, the value val is the decimal number to convert.ExampleLet us now see an example to implement the Decimal.ToUInt16() method −using ... Read More

Math.BigMul() Method in C#

AmitDiwan

AmitDiwan

Updated on 07-Nov-2019 05:45:19

280 Views

The Math.BigMul() method in C# is used to calculate the full product of two 32-bit numbers. The method returns an Int64 integer with the production of both the numbers.SyntaxFollowing is the syntax −public static long BigMul (int val1, int val2);Here, val1 is the 1st number to multiply, whereas val2 is ... Read More

Char.ToString() Method in C#

AmitDiwan

AmitDiwan

Updated on 07-Nov-2019 05:39:47

192 Views

The Char.ToString() method in C# is used to convert the value of this instance to its equivalent string representation.SyntaxFollowing is the syntax −public override string ToString ();ExampleLet us now see an example to implement the Char.ToString() method −using System; public class Demo {    public static void Main(){     ... Read More

Char.ToLowerInvariant(Char) Method in C#

AmitDiwan

AmitDiwan

Updated on 06-Nov-2019 08:06:14

246 Views

The Char.ToLowerInvariant() method in C# is used to convert the value of a Unicode character to its lowercase equivalent using the casing rules of the invariant culture.OutputFollowing is the syntax −public static char ToLowerInvariant (char ch);Above, the parameter ch is the Unicode character to convert.ExampleLet us now see an example ... Read More

Char.Parse(String) Method in C#

AmitDiwan

AmitDiwan

Updated on 06-Nov-2019 08:04:37

4K+ Views

The Char.Parse(String) method in C# is used to convert the value of the specified string to its equivalent Unicode character.SyntaxFollowing is the syntax −public static char Parse (string str);Above, the string str is a string that contains a single character or null.ExampleLet us now see an example to implement the ... Read More

Decimal.ToSingle() Method in C#

AmitDiwan

AmitDiwan

Updated on 06-Nov-2019 08:03:00

180 Views

The Decimal.ToSingle() method in C# is used to convert the value of the specified Decimal to the equivalent single-precision floating-point number.SyntaxFollowing is the syntax −public static float ToSingle (decimal val);Above, Val is the decimal number to convert.ExampleLet us now see an example to implement the Decimal.ToSingle() method −using System; public ... Read More

Decimal.ToSByte() Method in C#

AmitDiwan

AmitDiwan

Updated on 06-Nov-2019 08:01:34

88 Views

The Decimal.ToSByte() method in C# is used to convert the value of the specified Decimal to the equivalent 8-bit signed integer.SyntaxFollowing is the syntax −public static sbyte ToSByte (decimal val);Above, Val is the decimal number to convert.ExampleLet us now see an example to implement the Decimal.ToSByte() method −using System; public ... Read More

Decimal.ToOACurrency() Method in C#

AmitDiwan

AmitDiwan

Updated on 06-Nov-2019 07:59:34

126 Views

The Decimal.ToOACurrency() method in C# is used to convert the specified Decimal value to the equivalent OLE Automation Currency value, which is contained in a 64-bit signed integer.SyntaxFollowing is the syntax −public static long ToOACurrency (decimal val);Above, Val is the decimal number to convert.ExampleLet us now see an example to ... Read More

Type.GetField() Method in C#

AmitDiwan

AmitDiwan

Updated on 06-Nov-2019 07:12:54

391 Views

The Type.GetField() method in C# is used to get a specific field of the current Type.SyntaxFollowing is the syntax −public System.Reflection.FieldInfo GetField (string name); public abstract System.Reflection.FieldInfo GetField (string name, System.Reflection.BindingFlags bindingAttr);Above, the name is the string containing the name of the data field to get. The bindingAttr parameter is ... Read More

Advertisements