What do you know about WM_CHAR message?


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

Post New Answer

More C Sharp Interview Questions

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,


Types of polymerphism and explain about dynamic polymerphism?

5 Answers  


What is default value of bool in c#?

0 Answers  


Hai, I want to open a new form while the previous form is hiding or closing. I tried this with using MDI.I created one form like ParentForm.placed one button control.when clicked one that it opend new form like ChildForm.When i set the property of ChildForm to Maximize,but the ParentForm button control also appearing on the childform. so plz help me how to hide parentform controls(hide parentform while it is childform opened) thanq..

1 Answers  


What is the purpose of abstract class in c#?

0 Answers  






Did it possible to cast a generic type of derived class to generic type of base class?

2 Answers   TCS,


What is dependency injection in simple words?

0 Answers  


What is scaffolding in c#?

0 Answers  


What is serialization and deserialization in c# with example?

0 Answers  


interface a { Method1() Method2() } class b: a { override Method1() override Method2() } what will happen & why?

5 Answers  


How many dimensions can an array have?

0 Answers  


What do you understand by the terms datareader object and dataset object?

0 Answers  


Categories