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
AmitDiwan has Published 10740 Articles
AmitDiwan
122 Views
To return a value indicating whether this instance is equal to a specified object or UInt64, the code is as follows −Example Live Demousing System; public class Demo { public static void Main() { ulong val1 = 44565777; ulong val2 = 77878787; ... Read More
AmitDiwan
173 Views
To get the TypeCode for value type Int32, the code is as follows −Example Live Demousing System; public class Demo { public static void Main() { int val1 = 100; int val2 = 50; Console.WriteLine("Value1 = "+val1); Console.WriteLine("Value2 ... Read More
AmitDiwan
622 Views
To convert the value of the specified Decimal to the equivalent 64-bit unsigned integer, the code is as follows −Example Live Demousing System; public class Demo { public static void Main() { Decimal val = 99.29m; Console.WriteLine("Decimal value = "+val); ulong ... Read More
AmitDiwan
133 Views
To indicate whether this instance is equal to a specified object or UInt16, the code is as follows −Example Live Demousing System; public class Demo { public static void Main(){ ushort val1 = 52; ushort val2 = 10; bool res = ... Read More
AmitDiwan
477 Views
To convert the value of the specified Decimal to the equivalent 32-bit unsigned integer, the code is as follows −Example Live Demousing System; public class Demo { public static void Main() { Decimal val = 0.001m; Console.WriteLine("Decimal value = "+val); uint ... Read More
AmitDiwan
612 Views
To get the number of key/value pairs in the Dictionary, the code is as follows −Example Live Demousing System; using System.Collections.Generic; public class Demo { public static void Main(){ Dictionary dict = new Dictionary(); dict.Add("One", "Chris"); dict.Add("Two", "Steve"); ... Read More
AmitDiwan
525 Views
To reinterpret the specified 64-bit signed integer to a double-precision floating point number, the code is as follows −Example Live Demousing System; public class Demo { public static void Main() { long d = 9846587687; Console.Write("Value (64-bit signed integer) = "+d); ... Read More
AmitDiwan
403 Views
To convert the value of the specified string to its equivalent Unicode character, the code is as follows −Example Live Demousing System; public class Demo { public static void Main(){ bool res; Char ch; res = Char.TryParse("10", out ch); ... Read More
AmitDiwan
409 Views
To convert the specified double-precision floating point number to a 64-bit signed integer, the code is as follows −Example Live Demousing System; public class Demo { public static void Main() { double d = 5.646587687; Console.Write("Value = "+d); long res = ... Read More
AmitDiwan
318 Views
To convert the value of the current DateTime object to a Windows file time, the code is as follows −Example Live Demousing System; public class Demo { public static void Main() { DateTime d = DateTime.Now; Console.WriteLine("Date = {0}", d); long ... Read More