
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 10744 Articles

AmitDiwan
3K+ Views
The finally keyword is used as a block to execute a given set of statements, whether an exception is thrown or not thrown. For example, if you open a file, it must be closed whether an exception is raised or not.SyntaxFollowing is the syntax −try { // statements causing ... Read More

AmitDiwan
141 Views
To get the HashCode for the current UInt64 instance, the code is as follows −Example Live Demousing System; public class Demo { public static void Main() { ulong val1 = 8768768; ulong val2 = UInt64.MinValue; Console.WriteLine("HashCode for val1 = "+val1.GetHashCode()); ... Read More

AmitDiwan
102 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
142 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
587 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
102 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
444 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
576 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
485 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
376 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