In C#, what were the reasons to call the instruction to import namespace `using` instead of `use`? [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 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?

Related

What is WPF/C# equivalent of Panda's DataFrame [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 1 year ago.
Improve this question
So I worked with Panda's Dataframe and it is as you know very good in Data Analysis such as filtering. I am wondering what C# has to offer? I came across C# DataTable! is this C# take on DataFrame?
For data analysis Ml.Net introduced a similar Data Frame https://learn.microsoft.com/en-us/dotnet/api/microsoft.data.analysis.dataframe?view=ml-dotnet-preview
But for routine business apps, there’s the DataTable as you have found.

Project naming conventions: [Company].[ProjectName] vs [Company_ProjectName] [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 6 years ago.
Improve this question
Is it good practice to name preface project names within a solution like so?
CompanyName.P01
CompanyName.P02
CompanyName.P03
Or is it safer to use a convention like this?
CompanyName_P01
CompanyName_P02
CompanyName_P03
To me, the [.] separator looks nicer, and provides intellisense, but is there any caveat to using it?
Most of the solutions I came across follow the following convention:
CompanyName.SolutionName.LayerName
So basically in a company named COMP and a Project Named StackOverflow, you would end up with a project that looks like this:
COMP.StackOverflow.Business
COMP.StackOverflow.Data
COMP.StackOverflow.Web
COMP.StackOverflow.Core
This allows you to easily manage the generated assembly, so if you need to create a common library to be used in your company. You would name it:
COMP.SomeFrameworkName;
That would easily seperate your company's (or Team's) Dlls from external Dlls and Nuget Packages.

several funcions in one dll or seperate? [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 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.

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.

Categories

Resources