Tagged Questions
The namespace-organisation tag has no wiki summary.
7
votes
1answer
152 views
DDD: Domain model namespaces convention
I'm writing an application with a domain model in PHP, and am wondering which naming convention I should adopt.
Let's say I have a Customer, having an Address within its aggregate root.
I also have a ...
6
votes
5answers
109 views
is it a good idea to have classes with the same name in different namespace in c#?
for example, we have two classes for parsing the resumes, one to parse Excel and the other to parse HTML.what my colleagues love to do is to name these two classes the same name and put them into ...
4
votes
7answers
234 views
in which namespace / package to put exceptions
What is the common or best practice to structure the location of your exception classes?
Let's say you have the packages/namespaces myproject.person (models and DAOs for persons) and myproject.order ...
3
votes
1answer
48 views
Best approach to tackle class naming collisions between namespaces
I'm hitting a problem with a helper class I am working on to translate between 2 classes of the same name. Both classes are outside my scope of control, so I can't simply rename them.
My basic ...
3
votes
1answer
108 views
Arranging/Organizing my classes/interfaces into folders? Not changing namespace with folder (Resharper: Namespace Provider = false)
I currently have a project and its increasing in size everyday. Its a container for an api i am providing.
I currently have in the root all my classes and all interfaces.
I have separated my Enums, ...
3
votes
1answer
504 views
YUI3, Modules, Namespaces, calling functions
I would like to port the javascript code from my page to YUI3. After reading many posts (questions and answers) here and lots of information in the YUI3 page and in tutorials I have come to the ...
3
votes
4answers
501 views
(C++) Linking with namespaces causes duplicate symbol error
For the past few days, I have been trying to figure out how to link the files for a CLI gaming project I have been working on. There are two halves of the project, the Client and the Server code.
...
2
votes
2answers
195 views
MVC Namespace organisation
Hoping the SO community can help to resolve a debate in the office. At the moment our conclusion is 'it depends' !
In MVC, how do you organise your namespaces?
Option A
Do you go down the MS ...
1
vote
2answers
62 views
Conditional Namespace in Winform application
I want to know better way to define name-spaces in my projects. We have 2 different winform projects and there are certain code files and forms which we use in both project. So the structure of ...
1
vote
1answer
152 views
Preferred namespace naming convention
i've recently refactored a medium sized application and one of the jobs was to split commonly used code to different projects.
Now, lets say that commonly used namespace structure is
...
0
votes
1answer
78 views
F# - Organisation of algorithms in a file
I do not find a good way to organize various algorithms. Today the file is like this :
1/ Extraction of values from Excel
2/ First algorithm based on these values (extracted from Excel) starting ...
0
votes
2answers
171 views
header - like files in C#
Is there a way to 'fake' header files in C# using namespaces? From what I've heard, there is no way to get the preprocessing that they provided in C++; but I'd like the organization aspect of it ...
0
votes
2answers
212 views
Guidelines for formatting XML Namespace
I have not developed web services applications that publicly faced the Internet. As I begin to consider the issues of exposing schema definitions to a wide audience, I believe a certain amount of ...