What exception can an overridden method throw in comparison with the method it is overriding?
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 is data set in c#?
Can an Assembly have multiple versions
What are the collection classes ?
Define clr in .net?
What?s the difference between the Debug class and Trace class?
How to use nullable types in .net?
can it possible to acees the virthual method using the override method object? plz give me the example
explain DIFFERENCE BETWEEN CLASS AND MODULE?
Why do we use partial class in c#?
What is delay signing..??
What is string [] args in c#?