What is the use of 'using' statement in c#?
Explain the process of polymorphism with an example?
What is winforms c#?
interface a { Method1() Method2() } class b: a { override Method1() override Method2() } what will happen & why?
What is class in oops with example in c#?
What is datarelation c#?
When can a derived class override a base class member?
What is difference between class and interface in c#?
Write a sample code to write the contents to text file in c#?
How long does it take to learn c# programming?
WHAT ARE Design Patterns USING IN DOTNET
Using system; class main { public static void Main() { int a = 1; for (int i = 0; i < 10; i++) { int j = a * 5; Console.WriteLine(a + "*5=" + j); a++; } Console.ReadLine(); } }
What does .length do in c#?