what is IFormatable


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

Post New Answer

More C Sharp Interview Questions

What is difference between dictionary and list in c#?

0 Answers  


What is difference between .net and c#?

0 Answers  


Can properties be private in c#?

0 Answers  


Valuetype/reference type?

6 Answers   Microsoft,


How to call a function when a class implements 2 interfaces and function is present in both interfaces?

2 Answers  






What is difference between c sharp and c#?

0 Answers  


Is array immutable in c#?

0 Answers  


What is yield c#?

0 Answers  


What is an event in c#?

0 Answers  


What are the differences between system.string and system.text.stringbuilder classes?

0 Answers  


Ho we can see assembly information?

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,


Categories