Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>The answer that you will get here is no different from the answer in the other question: <a href="https://stackoverflow.com/questions/792136/can-i-build-2-or-more-dlls-from-c-project-in-visual-studio-2008/792179#792179">put in a separate project for each separate dll</a>.</p> <p>What I want to ask you is what your understanding of the definition of a "class" is. One class per DLL probably means that you're not very familiar with how assemblies, namespaces, and classes work.</p> <p>Tell us, what do you really want to be able to do? Because what you think you should be doing to solve that problem (e.g., creating one DLL per class) is not practical.</p> <p><strong>Update</strong></p> <p>Considering the context of your requirement (e.g., Silverlight web application), my conclusion is that <em>splitting your classes to several DLLs will not result in a performance improvement</em> in an ASP.NET web page because:</p> <ul> <li>DLLs are only used by the server, they are <em>not</em> downloaded via HTTP to your browser</li> <li>Once a DLL is loaded by a web application it won't load it again -- regardless of how many users are using your site at the same time. One DLL instance per server.</li> <li>When you start your web application it will load <em>all</em> DLLs that it depended on to compile, whether or not you will use it.</li> </ul> <p>So with your requirements, it's probably best NOT to use Silverlight for your application, considering the bandwidth limit. The avenues you can explore are:</p> <ul> <li>Learning AJAX techniques, specifically JSON, (and probably not ASP.NET AJAX and its easy-to-misuse UpdatePanel)</li> <li>Learning jQuery to find controls that will implement in JavaScript what you want to do using Silverlight</li> </ul>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload