Where do I place my example implementations in my framework?
I’ve created a pretty simple templating framework and have default implementations for some of my interfaces used for passing around information. I store these in MyFramework.Default namespace
Does putting types/functions inside namespace make compiler’s parsing work easy?
Retaining the names inside namespace
will make compiler work less stressful!?
What should be done with class names that conflict (common) framework names
What should be done exactly when the most obvious class name for a component is taken by a framework? In my case, I need to make a class that describes an HTTP request. Of course, the most common name is “taken” as System.Web.HttpRequest. What should I do? This project will be used in a web context, so I’d really rather not force people to not import the System.Web namespace, or type out all of my class names manually.
What is meant by namespaced content and what advantages does it have?
I was reading this blog by James Bennett regarding HTML vs XHTML . He writes :
Why do so many namespaces start with com
I’ve noticed that a lot of companies use “reverse domain name” namespaces and I’m curious where that practice originated and why it continues. Does it merely continue because of rote practice, or is there an outstanding architecture concept I might be missing here?
Advices on structure and names for namespaces and classes [closed]
Closed 11 years ago.
Handling table name collisions in Django
Django creates a table name by joining the app label with the model name. A project can have many apps. If two have the same label, how can both be used in the same database?
When to import names into the global namespace? (using x::y, from x import y etc.)
I’ve been programming in various languages for about 10 years now. And I still haven’t figured out when it is a good idea to import something into the global namespace (using x::y
in C++, from x import y
in Python etc.), so I hardly ever do it.
Is C# namespace should be Project-Name? [closed]
Closed 9 years ago.
Nested classes vs namespaces
Is it good to use nested classes or should I use namespaces instead?