0
votes
4answers
56 views
Should a class have the same name as the namespace?
I'm designing a namespace to hold a set of classes that will handle user related tasks for a several different applications. (Log-in, authenticate etc)
The problem is the namespac …
0
votes
1answer
49 views
Namespace Class clash in csharp - looking for suggestions
Hi, im building a generic articles framework and my namespace names are clashing with my entities:
Namespace: MyCompany.Articles.Modules
Class: Articles, Article
Any suggestions …
0
votes
0answers
17 views
PHP Doctrine relationship with namespaces
Hello, i just started using PHP namespaces. I have two models classes in separate files
In both files first i declare namespace
namespace eu\ed\sixImport\importViewer\models;
f …
0
votes
3answers
40 views
alias a namespace globaly for the entire project
is it possible to create a new alias for a given namespace for the entire project?
that is i dont want to write a "using DO = App.Do.App33;" in each cs file of the project.
but i w …
0
votes
4answers
59 views
xml element name with colon
I'm working against a 3rd party xml api. They have defined a required xml structure similar to the following.
<ns1:E xmlns:ns1="schema">
<ns1:B>
<ns2:S>
< …
2
votes
4answers
113 views
+100
C#: transcribe WAV file to text (speech-to-text) with System.Speech namespaces
How do you use the .NET speech namespace classes to convert audio in a WAV file to textual form which I can display on the screen or save to file?
I am looking for some tutorial s …
1
vote
13answers
185 views
Analogy? A programming language without namespaces is like (…) [closed]
Does anyone know of a good analogy for this? I've found a decent one, "XML document without namespaces is like calling everyone by their first name", but this isn't strong enough! …
4
votes
2answers
45 views
SelectSingleNode always returns null?
Taking this simplifed example of my XML:
<?xml version="1.0"?>
<message xmlns="http://www.mydomain.com/MyDataFeed" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" x …
0
votes
4answers
60 views
C#.NET Namespace name does not exist in namespace error - only when using is outside local namespace directive - why?
Using .NET 2.0, C#, Windows Forms development, Enterprise Library 3.1.
We have a project namespace (call it Project). We also have several sub-namespaces inside of that project, …
0
votes
3answers
67 views
Namespace convention for Objetive-C
I'd like to group classes so they must be referenced like this:
Root.Web
Root.Mail
Root.Audio
Each of the above classes corresponds to a file:
Web.h
Mail.h
Audio.h
The goal …
0
votes
3answers
73 views
How to display XSD validated XML using XSLT
I've been fighting with this for some time now, and haven't been able to find a clear answer to this yet.
As I understand correctly I can store data in an XML file, validate it us …
0
votes
3answers
110 views
Separating Enums from Class Definitions using Namespaces in C++?
I'm working with a legacy class that looks like this:
class A
{
enum Flags { One = 1, Two = 2 };
};
I'd like to pull out all the enums into a new namespace defined in a new …
2
votes
7answers
88 views
Python functions can be given new attributes from outside the scope?
I didn't know you could do this:
def tom():
print "tom's locals: ", locals()
def dick(z):
print "z.__name__ = ", z.__name__
z.guest = "Harry"
print "z.guest = ", …
2
votes
4answers
111 views
friend function within a namespace
When a friend function is included in the namespace, its definition needs to be prefixed with namespace to compile it, here is the sample code:
test.h:
#ifndef TEST_H
#define TES …
1
vote
7answers
171 views
Is nesting namespaces an overkill?
I'm writing a C++ program that has a large number of classes. In my head I can visualise them as distinct collections. For example there's a collection of classes for reading and s …
