Multiple choice technology web technology

How many classes can a single .NET DLL contain?

  1. One

  2. Two

  3. None

  4. Many

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

A single .NET DLL (assembly) can contain many classes - there is no limit. DLLs are assemblies that can hold multiple types including classes, interfaces, structs, and enums. The organization of classes within a DLL is flexible and depends on the application's architecture needs.