How many classes can a single .NET DLL contain ?


It can contain many classes.



Explore posts in the same categories: ASP.Net Interview Questions


BOOKMARK THIS : del.icio.us | Digg it | Furl | reddit |


Related Questions :

  • What is a Java package and how is it used?
  • A Java package is a naming context for classes and interfaces. A package is used to create a separate name...
  • Which of the following is NOT supported for .NET Classes?
  • Multiple Inheritance Clearly, in VB.NET or C# or any language supported by .NET framework, a child Class cannot Inherit from 2...
  • What is an interface class?
  • Interfaces, like classes, define a set of properties, methods, and events. But unlike classes, interfaces do not provide implementation. They...
  • Why do we need wrapper classes ?
  • It is sometimes easier to deal with primitives as objects. Moreover most of the collection classes store objects and not...
  • What are different types of inner classes?
  • Nested top-level classes, Member classes, Local classes, Anonymous classes Nested top-level classes- If you declare a class within a class and...
  • What are different types of inner classes?
  • Nested top-level classes, Member classes, Local classes, Anonymous classes Nested top-level classes- If you declare a class within a class and...
  • Java Packages Interview Questions
  • Do I need to import java.lang package any time? Why?No. It is by default loaded internally by the JVM. The...
  • What is the handle class?
  • A handle is a class that maintains a pointer to an object that is programmatically accessible through the public interface...
  • How can I set database to a single user mode ?
  • To set database to a single user mode, you can use the Enterprise Manager or the sp_dboption system stored procedure. For...
  • What do you know about networking support in Java ?
  • Java supports "low-level" and "high-level" classes. "Low-level" classes provide support for socket programming: Socket, DatagramSocket, and ServerSocket classes. "High-level" classes...

    Comments are closed.