How many classes can a single .NET DLL contain?

Answers were Sorted based on User's Feedback



How many classes can a single .NET DLL contain?..

Answer / kakani

It can contain many classes.

Is This Answer Correct ?    18 Yes 1 No

How many classes can a single .NET DLL contain?..

Answer / muneesh

a single dll in .net can contain more than one class there
is no limiit because we are linking many classes in a single
project and at the time of hosting we can convert it into a
single dll

Is This Answer Correct ?    9 Yes 1 No

How many classes can a single .NET DLL contain?..

Answer / pathy

we can define as many classes as you wany

Is This Answer Correct ?    6 Yes 1 No

How many classes can a single .NET DLL contain?..

Answer / sandeep thakur

Multiple inheritance!

Is This Answer Correct ?    4 Yes 2 No

How many classes can a single .NET DLL contain?..

Answer / kavitha

There r abstraction encapslation inhertance

Is This Answer Correct ?    2 Yes 1 No

How many classes can a single .NET DLL contain?..

Answer / shankar chaurasia

.NET Assembly can contain (2^24-1) 16777215 classes. Because
If the class is identified in metadata table using a
metadata token then token is of four bytes. First byte is
for connection to the metadata table and remain 3 for
classes and the biggest number on 3 bytes is 2^24-1 or 16777215.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More ASP.NET Interview Questions

About CLS and CTS?

8 Answers   Microsoft, Syncfusion,


If cookies is disabled in client browser will session work ?

7 Answers   Satyam,


How would one do a deep copy in .NET?

6 Answers   TCS,


Code for scolling in gridview

1 Answers   TCS,


Can you explain autopostback?

0 Answers  






What is a nested masterpage in asp.net 2.0? Can there be a master page inside a masterpage?

0 Answers  


I am using ASP.Net 2.0. I added the following code in button_Click page. but 'PreviousPage' is not taking as a keyword. It throughs an error. Page Poster = this.PreviousPage; TextBox txtNewTest = (TextBox)Poster.FindControl("txtTest"); sDisplay = txtNewTest.Text; Response.Write(sDisplay); The following is the Error Message: 'controls_LoginMain' does not contain a definition for 'PreviousPage'

2 Answers  


You are planning the deployment of an ASP.NET application. The application uses a Visual Studio .NET component named DataAccess that will be shared with other applications on your Web server. You are using Visual Studio .NET to create a Windows Installer package. You need to deploy DataAccess and the ASP.NET application so that they can be uninstalled later of necessary. What should you do? A . Create a setup project for DataAccess. Add the ASP.NET application in a custom action. B . Create a setup project for the ASP.NET application. Create another setup project for DataAccess. C . Create a Web setup project for the ASP.NET application. Add a project output for DataAccess. D . Create a Web setup project for the ASP.NET application. Add a merge module for DataAccess.

3 Answers   Syntax Softtech,


Your ASP.NET application displays sales data on a page. You want to improve performance by holding the page in memory on the server for one hour. You want to ensure that the page is flushed from memory after one hour, and that the page is re-created when the next request for the page is received. What should you do? A . Initialize a new instance of the Cache class in the Application.Start event handler. B . Initialize a new instance of the Timer class in the Page.Load event handler. C . Set the Duration attribute of the OutputCache directive in the page. D . In the Web.config file, set the timeout attribute of the sessionState element.

5 Answers   ADITI, Syntax Softtech,


What is data binding in asp net?

0 Answers  


What is ashx file in asp.net?

0 Answers  


What is the difference between HTTP-Post and HTTP-Get ?

1 Answers  


Categories