1
vote
4answers
80 views
Naming the Namespace
I am having an issue trying to figure out how to appropriately name my namespace. My namespace is currently:
<CompanyName>.<ProductName>.Configuration
However, usin …
0
votes
4answers
38 views
How to share constant values in .net namespaces?
I'm trying to port some code into .net which has a load of #define'd values e.g.
#define MY_CONSTANT (512)
#define MY_VERSION_STRING "v42.2"
When I import a cli library th …
0
votes
4answers
96 views
Detect main has started?
Might sound like an odd question. I suppose I can always have the main specifically set something that can be detected, but ideally I'd like to be able to have separate libs which …
1
vote
7answers
110 views
(Conventions) C# Class names
Hello,
I'm not too quite sure about what i should do about a grouped set of classes.
My situation: I have 11 classes that relate only to the class Character.cs, but all of those …
0
votes
6answers
87 views
the compiler doesn’t seem to accept Agent class
Hey,
probably the answer is quite silly but I need a pair fresh of eyes to spot the problem, if you will. this is the excerpt from _tmain:
Agent theAgent(void);
int m = theAgent. …
0
votes
2answers
365 views
EJB JNDI lookup on different WebSphere servers
I have two separate installs of WebSphere. (Actually one is WebSphere Application Server V6.1 with EJB 3.0 and Web Services feature packs, and the other server is WebSphere ESB Se …
2
votes
4answers
106 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
2answers
53 views
How to resolve Rails model namespace collision
The story so far:
I have a rails app with a model named "Term". All is well until trying to install Cucumber. Upon running
rake cucumber
I get
Term is not a class (TypeError)
…
0
votes
1answer
91 views
Namespace browsing works correctly in tools and as Imports but not in code window (except imports line)
Hello,
I posted this question and still have not gotten an answer so I thought I would link to the following video file of the problem...sorry I tried to upload the video to video …
1
vote
2answers
30 views
WebForms and ASP.NET MVC co-existance.
I am trying to make a WebForms project and ASP.NET MVC per this question. One of the things I've done to make that happen is that I added a namespaces node to the WebForms web.con …
3
votes
4answers
324 views
Putting separate python packages into same namespace?
Hey everyone,
I'm developing a python framework that would have "addons" written as separate packages. I.e.:
import myframework
from myframework.addons import foo, bar
Now, wha …
2
votes
2answers
184 views
IObservable<T> in .NET Framework 4.0 Beta2
IObservable<T> and IObserver<T> interfaces are placed directly in the System namespace in .NET Framework 4.0 Beta2. Why not in System.Collections.Generic, like IEnumera …
0
votes
4answers
91 views
Get program title from process name in C#
I'd like to obtain the title of a program from the running processes name, using C#.
Example:
I know a program is called "msn.exe", and i want to obtain the title (name), "Window …
0
votes
3answers
55 views
XML and XSLT and setting namespace.
I need to add an xmlns to the root element in the output of this XSLT transform. I've tried added <xsl:attribute name="xmlns"> but it's disallowed.
Has anyone got any ideas …
2
votes
3answers
141 views
How do I create a namespace package in Python?
In Python, a namespace package allows you to spread Python code among several projects. This is useful when you want to release related libraries as separate downloads. For example …
