Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Csharp Articles
Page 183 of 196
DateTime.FromFileTime() Method in C#
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 System; public class Demo { public static void Main() { DateTime d1 = DateTime.FromFileTime(100000000000); System.Console.WriteLine("DateTime = {0:dd} {0:y}, {0:hh}:{0:mm}:{0:ss} ", d1); } }OutputThis will produce the following output −DateTime = 01 January 1601, 02:46:40ExampleLet us now see another example to implement the ...
Read MoreDateTime.FromBinary() Method in C#
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 62-bit field.ExampleLet us now see an example to implement the DateTime.FromBinary() method −using System; public class Demo { public static void Main() { DateTime d1 = new DateTime(2019, 11, 10, 6, 20, 45); long val = d1.ToBinary(); DateTime d2 = ...
Read MoreDateTime.Equals() Method in C#
The DateTime.Equals() method in C# is used check whether two DateTime objects or instances are equal or not. TRUE is returned if both are equal, else FALSE would be the return value.SyntaxFollowing is the syntax −public static bool Equals (DateTime date1, DateTime date2);ExampleLet us now see an example to implement the DateTime.Equals() method −using System; public class Demo { public static void Main() { DateTime d1 = new DateTime(2019, 09, 10, 5, 15, 25); DateTime d2 = d1.AddMonths(25); Console.WriteLine("Initial DateTime = {0:dd} {0:y}, {0:hh}:{0:mm}:{0:ss} ", d1); Console.WriteLine("New ...
Read MoreDateTime.CompareTo() Method in C#
The DateTime.CompareTo() method in C# is used to compare the value of this instance to a specified DateTime value.SyntaxFollowing is the syntax −public int CompareTo (DateTime val);Above, Val is the date to be compared.It returns an integer value, 0 − If this instance is later than ValExampleLet us now see an example to implement the DateTime.CompareTo() method −using System; public class Demo { public static void Main(){ DateTime date1 = new DateTime(2019, 05, 20, 6, 20, 40); DateTime date2 = new DateTime(2019, 05, 20, 6, 20, 40); Console.WriteLine("DateTime 1 = ...
Read MoreType.GetInterface() Method in C#
The Type.GetInterface() method in C# is used to get a specific interface implemented or inherited by the current Type.SyntaxFollowing is the syntax −public Type GetInterface (string name); public abstract Type GetInterface (string name, bool ignoreCase);ExampleLet us now see an example to implement the Type.GetInterface() method −using System; public class Demo { public static void Main(){ Type type = typeof(double); Type myInterface = type.GetInterface("IFormattable"); Console.WriteLine("Interface = "+myInterface); } }OutputThis will produce the following output −Interface = System.IFormattableExampleLet us now see another example to implement the Type.GetInterface() method −using System; public ...
Read MoreUInt64.GetTypeCode() Method in C# with Examples
The UInt64.GetTypeCode() method in C# is used to return the TypeCode for value type UInt64.SyntaxFollowing is the syntax −public TypeCode GetTypeCode ();ExampleLet us now see an example to implement the UInt64.GetTypeCode() method −using System; public class Demo { public static void Main(){ ulong val1 = 55; ulong val2 = 100; TypeCode type1 = val1.GetTypeCode(); TypeCode type2 = val2.GetTypeCode(); Console.WriteLine("Typecode for val1 = "+type1); Console.WriteLine("Typecode for val2 = "+type2); } }OutputThis will produce the following output −Typecode for val1 = UInt64 ...
Read MoreUInt64.Equals Method in C# with Examples
The UInt64.Equals() method in C# returns a value indicating whether this instance is equal to a specified object or UInt64.SyntaxFollowing is the syntax −public override bool Equals (object ob); public bool Equals (ulong ob);Above, the parameter ob for the 1st syntax is an object to compare to this instance and the parameter ob for the 2nd syntax is the 64-bit unsigned integer to compare to this instance.ExampleLet us now see an example to implement the UInt64.Equals() method −using System; public class Demo { public static void Main(){ ulong val1 = 44565777; ulong val2 ...
Read MoreUInt64.CompareTo() Method in C# with Examples
The UInt64.CompareTo() method in C# is used to compare the current instance to a specified object or UInt64 and returns an indication of their relative values.SyntaxFollowing is the syntax −public int CompareTo (object val); public int CompareTo (ulong val;Above, the value for the 1st syntax is an object to compare. The value for 2nd syntax is an unsigned integer to compare.The return value is 0 if the current instance is equal to value. It’s less than zero if the current instance is less than Val. The return value is more than zero if the current instance is greater than the ...
Read MoreInt32.GetTypeCode Method in C# with Examples
The Int32.GetTypeCode() method in C# is used to return the TypeCode for value type Int32.SyntaxFollowing is the syntax −public TypeCode GetTypeCode ();ExampleLet us now see an example to implement the Int32.GetTypeCode() method −using System; public class Demo { public static void Main(){ int val1 = 100; int val2 = 50; Console.WriteLine("Value1 = "+val1); Console.WriteLine("Value2 = "+val2); Console.WriteLine("Are they equal? = "+val1.Equals(val2)); Console.WriteLine("HashCode for Value1 = "+val1.GetHashCode()); Console.WriteLine("HashCode for Value2 = "+val2.GetHashCode()); TypeCode type1 = val1.GetTypeCode(); ...
Read MoreDecimal.ToUInt64() Method in C#
The Decimal.ToUInt64() method in C# is used to convert the value of the specified Decimal to the equivalent 64-bit unsigned integer.SyntaxFollowing is the syntax −public static ulong ToUInt64 (decimal val);Above, Val is the decimal number to convert.ExampleLet us now see an example to implement the Decimal.ToUInt64() method −using System; public class Demo { public static void Main(){ Decimal val = 99.29m; Console.WriteLine("Decimal value = "+val); ulong res = Decimal.ToUInt64(val); Console.WriteLine("64-bit unsigned integer = "+res); } }OutputThis will produce the following output −Decimal value = 99.29 64-bit ...
Read More