How do I automate my desktop application?
No Answer is Posted For this Question
Be the First to Post Answer
What is difference between web and window application?
What is Event - Delegate?
What is remote data?
Is everything an object c#?
What is an actual parameter?
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; } }
Can you instantiate an abstract class c#?
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?
Why is lazy loading?
Explain namespaces in c#.
What is predicate builder?
Can an int be negative c#?