Latest Answer: Auto, Local, Watch ...
Latest Answer: wrapper class are those class in which we can not define and call all predefined function .it is possible in java not C#. ...
Latest Answer: Hi, A class contain different access modifier. The Protected and Protected Internal are two access modifier..Protected ; can only access with in the base class and also accessible from the derive class.Protected Internal ; can only access with in base ...
Latest Answer: By using "sealed" keyword we can restrict a class from inheritence. Please reply me if it is wrong! ...
Latest Answer: This is not working. Following is the code:using System;using System.Collections.Generic;using System.Text;namespace ConsoleApplication2{public abstract class sayhello{public void hello(){Console.WriteLine("hello");}}class Program{static void Main(string[] ...
Latest Answer: When you derive a class from a base class, the derived class will inherit all members of the base class except constructors, though whether the derived class would be able to access those members would depend upon the accessibility of those members in ...
Latest Answer: framework is endowed with provider specific exception class that u can use to handle exception from database. for instance to handle exceptions from SQL Server u can use System.Data.SqlClient.SqlException class. Similarly, for OLE DB data source ...
Latest Answer: Objects are generally late bound when using class factories with interfaces (or base classes). An example of late binding can be seen below. The function that generates the concrete object (at runtime) will decide which type of concrete object to instantiateIReader ...
View page << Previous 5 6 7 8 [9] 10 11 12 13 14 Next >>

Go Top