several funcions in one dll or seperate? [closed] - c#

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 6 years ago.
Improve this question
I have algorithm (c++ dll) wrapped in C#. The execution is on a web server.
Considering throughput/speed/memory etc. Should i write all functions in one dll or each function one dll? which way is better ?

All functions, classes and other structures may contain in one dll. This is better option. If you create more dll for each functions, management of the project, implementation and maintanence will be harder.

Related

In C#, what were the reasons to call the instruction to import namespace `using` instead of `use`? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 3 days ago.
Improve this question
In many languages the intention to use external entities (libraries, modules, namespaces) is expressed with verbs. It sounds like an instruction to the compiler. For example,
import in Java, JavaScript and Python
imports in VB.NET (3rd person verb, describes the program instead of commanding)
open in F#
use in some SQL dialects
uses in Pascal
Then why did C# (and C++) authors choose the using form?

how to edit method of dll file for asp.net project [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I have xgeno.mvc.utilities dll in my project references. I want to edit one of the method of this dll.
Can I do this?
You have to use a decompiler for this which has many variants on the web (there's google) and then make the modifications on the decomplied files and then compile it again and then point that newly compiled dll to your project
You need something like .NET Reflector, but since it is not free, you will probably want to look for free alternatives. See Here some discussion wich can help in the search.

C# interop to lower level other than c\c++ [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 7 years ago.
Improve this question
Given the fact that I need in specific parts of my projects,
to interop / interact a .net c# code with a code that's within a dll produced by an unmanaged language:
which language other than c\c++ has good compatibility and is as fast or preferably faster?
I have searched and found few ( looks promising) less popular names I couldn't decide on any of them as I have no clue how to if it's possible at all to interact with their dll.
Haskell, Rust, D, Fortran, Nim... and more..
Did you try to implement this approach with any of them?
Use C++/CLI. This give you an bridge with managed and unmanaged in the best performance possible.

.Net XML parser or others? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
As a part of my academics, i'm asked to build a web content management system using .Net framework and xml databases. I have heard that .net itself provides a XML parser. Is it good enough for academic projects or is there any other 3rd party applications I can use?
I would go with Linq to XML
http://msdn.microsoft.com/en-us/library/bb387061.aspx
That is the standard way of interacting with xml from .Net.

Where to put interfaces in my project structure [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
This is my project structure in visual studio. Folders are indicated with a - and files with an *.
Project.Core
- Customer
- FinancialProcessing
- RiskAssesors
* IRiskAssesor
* HighRiskAssesor
* LowRiskAssesor
Is it better (i.e. common practice, more convenient, less confusing) to put the interface in the FinancialProcessing folder than inside the RiskAssesors folder?
What do you guys do?
I keep the interfaces in the same folder as the class that uses it.

Categories

Resources