AmitDiwan has Published 10740 Articles

UInt32.GetTypeCode() Method in C# with Examples

AmitDiwan

AmitDiwan

Updated on 08-Nov-2019 06:54:17

132 Views

The UInt32.GetTypeCode() method in C# is used to return the TypeCode for value type UInt32.SyntaxFollowing is the syntax −public TypeCode GetTypeCode ();ExampleLet us now see an example to implement the UInt32.GetTypeCode() method −using System; public class Demo {    public static void Main(){       uint val1 = 55; ... Read More

Math Class Fields with Examples in C#

AmitDiwan

AmitDiwan

Updated on 08-Nov-2019 06:52:17

169 Views

The Math class in C# has Math.E and Math.PI fields. Let us see an example of both the fields −Math.ESyntaxIt is the natural logarithmic base specified by the constant e. The syntax is as follows −public const double E = 2.71828182845905;ExampleLet us now see an example −using System; public class ... Read More

Decimal.ToString() Method in C#

AmitDiwan

AmitDiwan

Updated on 08-Nov-2019 06:47:29

263 Views

The Decimal.ToString() method in C# is used to convert the numeric 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 Decimal.ToString() method −using System; public class Demo{    public static void Main(){     ... Read More

Double.ToString Method in C#

AmitDiwan

AmitDiwan

Updated on 07-Nov-2019 07:31:15

213 Views

The Double.ToString() method in C# is used to convert the numeric 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 Double.ToString() method −using System; public class Demo{    public static void Main(){     ... Read More

Console.Clear Method in C#

AmitDiwan

AmitDiwan

Updated on 07-Nov-2019 07:27:24

223 Views

The Console.Clear method in C# is used to clear the console buffer and corresponding console window of display information.SyntaxFollowing is the syntax −public static void Clear ();ExampleLet us now see an example before implementing the Console.Clear method −using System; public class Demo {    public static void Main(){     ... Read More

Uri.ToString() Method in C#

AmitDiwan

AmitDiwan

Updated on 07-Nov-2019 07:24:49

248 Views

The Uri.ToString() method in C# is used to get a canonical string representation for the specified Uri instance.SyntaxFollowing is the syntax −public override string ToString ();ExampleLet us now see an example to implement the Uri.ToString() method −using System; public class Demo {    public static void Main(){       ... Read More

Uri.MakeRelativeUri(Uri) Method in C#

AmitDiwan

AmitDiwan

Updated on 07-Nov-2019 07:22:50

215 Views

The Uri.MakeRelativeUri(Uri) method in C# is used to determine the difference between two Uri instances.SyntaxFollowing is the syntax −public Uri MakeRelativeUri (Uri uri);Above, the URI is the URI to compare to the current URI.ExampleLet us now see an example to implement the Uri.MakeRelativeUri(Uri) method −using System; public class Demo { ... Read More

DateTime.FromFileTimeUtc() Method in C#

AmitDiwan

AmitDiwan

Updated on 07-Nov-2019 07:20:43

207 Views

The DateTime.FromFileTimeUtc() method in C# converts the specified Windows file time to an equivalent UTC time.SyntaxFollowing is the syntax −public static DateTime FromFileTimeUtc (long time);Here, the parameter time is the Windows file time expressed in ticks (expressed in 100-nanosecond ticks.)ExampleLet us now see an example to implement the DateTime.FromFileTimeUtc() method ... Read More

DateTime.FromFileTime() Method in C#

AmitDiwan

AmitDiwan

Updated on 07-Nov-2019 07:19:10

171 Views

The DateTime.FromFileTime() method in C# is used to convert the specified Windows file time to an equivalent local time.SyntaxFollowing is the syntax −public static DateTime FromFileTime (long fileTime);Above, the parameter lifetime is a Windows file time expressed in ticks.ExampleLet us now see an example to implement the DateTime.FromFileTime() method −using ... Read More

DateTime.FromBinary() Method in C#

AmitDiwan

AmitDiwan

Updated on 07-Nov-2019 07:15:54

276 Views

The DateTime.FromBinary() method in C# is used to deserialize a 64-bit binary value and recreates an original serialized DateTime object.SyntaxFollowing is the syntax −public static DateTime FromBinary (long val);Above, Val is a 64-bit signed integer that encodes the Kind property in a 2-bit field and the Ticks property in a ... Read More

Advertisements