2
votes
5answers
60 views
Should I put custom code inside Microsoft’s BCL/FCL namespaces?
A .NET programmer is allowed to wrap code inside namespaces and also to use a namespace already defined, even those defined by Microsoft in the Framework or Base Class Library. For example if I were …
1
vote
1answer
37 views
Namespace and classes in php
Why i receive error? the class in the same namespace..
php 5.3.0
namespace ExampleSystem\Core;
class Test {
public function __construct() {
print 'Test ok';
}
}
// Fatal error: Class …
0
votes
4answers
59 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 namespace will be called …
0
votes
0answers
18 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;
first class:
class …
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 to how this can be …
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 want to do it one …
0
votes
4answers
60 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>
<ns2:V>
…
1
vote
13answers
187 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! Infinite fame goes …
2
votes
4answers
146 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 samples.
UPDATE
…
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" …
0
votes
4answers
61 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, for example …
0
votes
3answers
68 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 is to use the above …
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 using an XSD and then …
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 = ", z.guest
print …
2
votes
4answers
112 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 TEST_H
namespace …
