AmitDiwan has Published 11365 Articles

Type.GetEnumNames() Method in C#

AmitDiwan

AmitDiwan

Updated on 06-Nov-2019 07:03:50

45 Views

The Type.GetEnumNames() method in C# is used to return the names of the members of the current enumeration type.SyntaxFollowing is the syntax −public virtual string[] GetEnumNames ();ExampleLet us now see an example to implement the Type.GetEnumNames() method −using System; public class Demo {    enum Vehicle {Car, Bus, Bike}   ... Read More

How to create 1-Tuple or Singleton Tuple in C#?

AmitDiwan

AmitDiwan

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

88 Views

The Tuple class represents a 1-tuple, which is called singleton. A tuple is a data structure that has a sequence of elements.ExampleLet us now see an example to implement the 1-tuple in C# −using System; public class Demo {    public static void Main(string[] args) {       Tuple ... Read More

DateTimeOffset.FromUnixTimeSeconds() Method in C#

AmitDiwan

AmitDiwan

Updated on 06-Nov-2019 06:56:10

675 Views

The DateTimeOffset.FromUnixTimeSeconds() method in C# is used to convert a Unix time expressed as the number of seconds that have elapsed since 1970-01-01T00:00:00Z to a DateTimeOffset value.SyntaxFollowing is the syntax −public static DateTimeOffset FromUnixTimeSeconds (long val);Above, the parameter value is a Unix time, expressed as the number of seconds that ... Read More

DateTimeOffset.FromUnixTimeMilliseconds() Method in C#

AmitDiwan

AmitDiwan

Updated on 06-Nov-2019 06:54:05

1K+ Views

The DateTimeOffset.FromUnixTimeMilliseconds() method in C# is used to convert a Unix time expressed as the number of milliseconds that have elapsed since 1970-01-01T00:00:00Z to a DateTimeOffset value.SyntaxFollowing is the syntax −public static DateTimeOffset FromUnixTimeMilliseconds (long val);Above, Val are the milliseconds that have elapsed since 1970-01-01T00:00:00Z (January 1, 1970, at 12:00 ... Read More

Type.GetElementType() Method in C#

AmitDiwan

AmitDiwan

Updated on 06-Nov-2019 06:43:12

164 Views

The Type.GetElementType() method in C# is used to return the Type of the object encompassed or referred to by the current array, pointer or reference type.SyntaxFollowing is the syntax −public abstract Type GetElementType ();ExampleLet us now see an example to implement the Type.GetElementType() method −using System; public class Demo { ... Read More

Tuple Class in C#

AmitDiwan

AmitDiwan

Updated on 06-Nov-2019 06:32:34

64 Views

The Tuple class represents a 4-tuple, which is called quadruple. 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 ... Read More

Math.Tan() Method in C#

AmitDiwan

AmitDiwan

Updated on 06-Nov-2019 06:28:21

186 Views

The Math.Tan() method in C# is used to return the tangent of the specified angle.SyntaxFollowing is the syntax −public static double Tan (double val);Here, Val is the angle.ExampleLet us now see an example to implement Math.Tan() method −using System; public class Demo {    public static void Main(){     ... Read More

Math.Sqrt() Method in C#

AmitDiwan

AmitDiwan

Updated on 06-Nov-2019 06:26:41

5K+ Views

The Math.Sqrt() method in C# is used to compute the square root of the specified number.SyntaxFollowing is the syntax −public static double Sqrt (double val);Above, Val is the number for which we want the square root.ExampleLet us now see an example to implement Math.Sqrt() method −using System; public class Demo ... Read More

DateTime.AddYears() Method in C#

AmitDiwan

AmitDiwan

Updated on 06-Nov-2019 06:23:49

3K+ Views

The DateTime.AddYears() method in C# is used to add the specified number of years to the value of this instance. It returns new DateTime.SyntaxFollowing is the syntax −public DateTime AddYears (int yrs);Above, yrs are the years to be added. If you want to subtract years, then use a negative value.ExampleLet ... Read More

Math.Pow() Method in C#

AmitDiwan

AmitDiwan

Updated on 06-Nov-2019 06:21:59

5K+ Views

The Math.Pow() method in C# is used to compute a number raised to the power of some other number.SyntaxFollowing is the syntax −public static double Pow(double val1, double val2)Above, val1 is a double-precision floating-point number to be raised to a power., whereas val2 is a double-precision floating-point number that specifies ... Read More

Advertisements