Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Server Side Programming Articles - Page 2107 of 2646
72 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 System; public class Demo { public static void Main(){ Decimal val = 875.647m; Console.WriteLine("Decimal value = "+val); ushort res = Decimal.ToUInt16(val); Console.WriteLine("16-bit unsigned integer = "+res); } }OutputThis will produce the following output −Decimal value = ... Read More
269 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 the 2nd number.ExampleLet us now see an example to implement Math.BigMul() method −using System; public class Demo { public static void Main(){ int val1 = Int32.MaxValue; int val2 = Int32.MaxValue; Console.WriteLine("Product of two numbers = " + Math.BigMul(val1, val2)); ... Read More
333 Views
The Math.Atan2() method in C# is used to return the angle whose tangent is the quotient of two specified numbers.SyntaxFollowing is the syntax −public static double Atan2 (double val1, double val2);Above, val1 is the y coordinate, whereas val2 is the x coordinate.ExampleLet us now see an example to implement Math.Atan2() method −using System; public class Demo { public static void Main(){ double val1 = 3.0; double val2 = 1.0; double angle, radians; radians = Math.Atan2(val1, val2); angle = radians * (180/Math.PI); ... Read More
172 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(){ char ch = 'p'; Console.WriteLine("Value = "+ch); char res1 = Char.ToLowerInvariant(ch); Console.WriteLine("Lowercase Equivalent = "+res1); string res2 = ch.ToString(); Console.WriteLine("String Equivalent = "+res2); } }OutputThis will produce the following output −Value = p ... Read More
210 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 to implement the Char.ToLowerInvariant() method −using System; public class Demo { public static void Main(){ char ch = 'D'; char res = Char.ToLowerInvariant(ch); Console.WriteLine("Value = "+ch); Console.WriteLine("Lowercase Equivalent = "+res); } }OutputThis will produce the following ... Read More
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 Char.Parse(String) method −using System; public class Demo { public static void Main(){ string str ="a"; char res = Char.Parse(str); Console.WriteLine("Value = "+str); Console.WriteLine("Equivalent Unicode character = "+res); } }OutputThis will produce the following output −Value = ... Read More
169 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 class Demo { public static void Main(){ Decimal val = 0.00000007575833m; Console.WriteLine("Decimal value = "+val); float res = Decimal.ToSingle(val); Console.WriteLine("Single-precision floating-point number = "+res); } }OutputThis will produce the following output −Decimal value = 0.00000007575833 Single-precision ... Read More
81 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 class Demo { public static void Main(){ Decimal val = 97.567m; Console.WriteLine("Decimal value = "+val); sbyte res = Decimal.ToSByte(val); Console.WriteLine("SByte value = "+res); } }OutputThis will produce the following output −Decimal value = 97.567 SByte value ... Read More
112 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 implement the Decimal.ToOACurrency() method −using System; public class Demo { public static void Main(){ Decimal val = 95; Console.WriteLine("Decimal value = "+val); long res = Decimal.ToOACurrency(val); Console.WriteLine("Long value = "+res); } }OutputThis will produce the following ... Read More
170 Views
The Type.GetHashCode() method in C# is used to return the hash code for this instance.SyntaxFollowing is the syntax −public override int GetHashCode ();ExampleLet us now see an example to implement the Type.GetHashCode() method −using System; public class Demo { public static void Main(){ string[] arr = {"tom", "amit", "kevin", "katie"}; Type t1 = arr.GetType(); Type t2 = t1.GetElementType(); Console.WriteLine("Type = "+t2.ToString()); Console.WriteLine("Hash Code = "+t1.GetHashCode()); } }OutputThis will produce the following output −Type = System.String Hash Code = 9144789ExampleLet us now see another ... Read More