What is the difference between directcast and ctype?
Answer Posted / swapna
Directcast means implicit casting. ctype comes under
Explicit conversion of integers to strings or strings to
integers.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Is it possible to execute multiple catch block for a single try statement?
what will be the output of the given below coding. using System; public class Exercise { static void OddNumbers(int a) { if (a >= 1) { Console.Write("{0}, ", a); a -= 2; OddNumbers(a); } } public static int Main() { const int Number = 9; Console.WriteLine("Odd Numbers"); OddNumbers(Number); Console.WriteLine(); return 0; } }
What is appdomain in c#?
Distinguish between a class and struct?
Differentiate between method overriding from method overloading with its functionality?
How can I develop an application that automatically updates itself from the web?
Explain how to implement an object pool in c#.net
What is a jagged array?
How do I simulate optional parameters to com calls?
What is desktop application testing?
What is the difference between a class and an object c#?
Illustrate serialization?
What is the difference between Java and .NET garbage collectors?
What is CLR and its application.?
What is the difference between interface and inheritance in c#?