How do I automate my desktop application?


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 web and window application?

0 Answers  


What is Event - Delegate?

0 Answers  


What is remote data?

0 Answers  


Is everything an object c#?

0 Answers  


What is an actual parameter?

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,


Can you instantiate an abstract class c#?

0 Answers  


In Main function another function is there and to that function if we pass string as parameter ,then that string value is passed by value or reference type?

4 Answers   Honeywell,


Why is lazy loading?

0 Answers  


Explain namespaces in c#.

0 Answers  


What is predicate builder?

0 Answers  


Can an int be negative c#?

0 Answers  


Categories