What are data types with examples?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Sharp Interview Questions

What is byte c#?

0 Answers  


What is arraylist class in c#?

0 Answers  


what are the differences b/w structure and class?

10 Answers  


What is the use of dll file in c#?

0 Answers  


What is a interface in c#?

0 Answers  






Are c and c# the same thing?

0 Answers  


Is a c# interface the same as a c++ abstract class?

0 Answers  


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; } }

1 Answers   iGate,


What is the difference between System.console.WriteLine() and System.console.Write() function?example?

0 Answers   HCL,


What is class method?

0 Answers  


What do you mean by serialization in .NET?

0 Answers   Accenture,


How do you specify a custom attribute for the entire assembly (rather than for a class)?

0 Answers  


Categories