Tagged Questions

182
votes
6answers
14k views

Should Usings be inside or outside the namespace

I have been running StyleCop over some C# code and it keeps reporting that my using statements should be inside the namespace. Is there a technical reason for putting the using statements inside ...
28
votes
7answers
13k views

Getting all types in a namespace via reflection

How do you get all the classes in a namespace through reflection in C#?
27
votes
7answers
3k views

Should I stop fighting Visual Studio's default namespace naming convention?

I'm working on an MVVM project, so I have folders in my project like Models, ViewModels, Windows, etc. Whenever I create a new class, Visual Studio automatically adds the folder name to the namespace ...
22
votes
6answers
3k views

Should the folders in a solution match the namespace?

Should the folders in a solution match the namespace? In one of my teams projects, we have a class library that has many sub-folders in the project. Project Name and Namespace: ...
19
votes
9answers
14k views

Using Xpath With Default Namespace in C#

I've got an XML document with a default namespace. I'm using a XPathNavigator to select a set of nodes using Xpath as follows: XmlElement myXML = ...; XPathNavigator navigator = ...
17
votes
8answers
1k views

Should I wrap all my c++ code in its own namespace?

I come from a c# background where everything has its own namespace, but this practice appears to be uncommon in the c++ world. Should I wrap my code in it's own namespace, the unnamed namespace, or no ...
16
votes
4answers
2k views

C# Visual Studio 2010 suddenly can't see namespace?

My C# WinForms solution has two projects. A DLL which is the main project I'm working on, and an executable WinForms I call "Sandbox" so that I can compile/run/debug the DLL easily in one go. I'm ...
15
votes
5answers
8k views

'CompanyName.Foo' is a 'namespace' but is used like a 'type'

Restatement of the question I'm resurrecting this question because I just ran into this error again today, and I'm still utterly confused why the C# compiler bothers to check for collisions between ...
15
votes
4answers
3k views

C#: Xml-documentation for a namespace

Would you write xml-doc for a namespace? And if yes, how and where? I would think, if it is possible, maybe an almost empty file like this: /// <summary> /// This namespace contains stuff /// ...
15
votes
7answers
3k views

C# namespace alias - what's the point?

I have been trying to learn more about the C# language, but I haven't been able to see a situation where one would use namespace aliasing like using someOtherName = System.Timers.Timer; It seems ...
11
votes
2answers
251 views

Extension methods conflict

Lets say I have 2 extension methods to string, in 2 different namespaces: namespace test1 { public static class MyExtensions { public static int TestMethod(this String str) ...
11
votes
3answers
2k views

Get type name without full namespace in C#

i have the following code: return "[Inserted new " + typeof(T).ToString() + "]"; but typeof(T).ToString() return the full name including namespace is there anyway to get just the class name ...
11
votes
7answers
662 views

What is the benefit of using namespace aliases in C#?

What is the benefit of using namespace aliases? Is it good only for simplify of coding?
10
votes
5answers
523 views

How do you resolve the common naming collision between type and object?

Since the standard c# convention is to capitalize the first letter of public properties, the old c++ convention of initial capital for type names, and initial lowercase for non-type names does not ...
10
votes
4answers
3k views

XPATHS and Default Namespaces

What is the story behind XPath and support for namespaces? Did XPath as a specification precede namespaces? If I have a document where elements have been given a default namespace: <foo ...
9
votes
5answers
119 views

(Question on best practice) Why is “using System.Text” there by default?

Every time I creat a class, I see using System.Text that is added (amongst other using) by default. Every time I remove it after a while because it is unused according to ReSharper. Am I missing a ...
9
votes
3answers
275 views

Is there a way to get all namespaces you're 'using' within a class through C# code?

Is there any way to get a List<string> which contains all 'usings' within a namespace/class? For instance using System; using System.Collections.Generic; using System.Linq; using System.Text; ...
9
votes
5answers
346 views

.NET - Multiple libraries with the same namespace - referencing

Today I am faced with a curious challenge... This challenge involves two .NET libraries that I need to reference from my application. Both of which I have no control over and have the same namespace ...
9
votes
6answers
274 views

basic question on C# - do I need a namespace?

I am a Java developer, totally new to C#. I am currently writing a DLL for distribution across my organization. It is a very simple library containing a couple of classes and I do not see any real use ...
9
votes
3answers
520 views

explicitly refer to a class without a namespace in C#

The code I'm working with has a class called Environment that is not in any namespace. Unfortunately if I am in a class that imports the System namespace, there is no way to refer to the custom class ...
9
votes
6answers
7k views

Namespaces and folder structures in c# solutions: how should folders on disk be organised?

First off, let’s agree that namespace should match folder structure and that each language artefact should be in its own file. (see ...
8
votes
3answers
555 views

Some Questions about structuring domain-driven-design namespaces

I have some general questions about framework design. I am building an API for an iPhone application in C#.NET (framework 3.5), & SQL 2008 (using LINQ). I have followed the Domain-Driven-Design ...
8
votes
3answers
2k views

EF4 Poco Issue Mapping Types Same Name Same Assembly Different Namespaces

I am experiencing an issue with EF4 and Proxy Pocos. I have 2 classes with the same name in the same assembly but different namespaces: QuoteModels.CashPayment OrderModels.CashPayment This ...
8
votes
4answers
3k views

Namespace constant in C#

Is there any way to define a constant for an entire namespace, rather than just within a class? For example: namespace MyNamespace { public const string MY_CONST = "Test"; static class ...
8
votes
5answers
533 views

Is global:: a bad code smell in C#?

From what I understand, the global:: qualifier allows you to access a namespace that has been hidden by another with the same name. The MSDN page uses System as an example. If you create your own ...
7
votes
4answers
190 views

c#: Why isn't this ambiguous enum reference resolved using the method signature?

Consider the following code: namespace ConsoleApplication { using NamespaceOne; using NamespaceTwo; class Program { static void Main(string[] args) { // ...
7
votes
8answers
146 views

How important is the context that is implied by a namespace?

Ok, the title might sound a bit vague but I really can't think of something clearer here. I recently was in the position where I needed a Point class, simply with two properties, X and Y and a ctor ...
7
votes
5answers
4k views

VS2010 - Getting “type or namespace name could not be found” but everything seems ok?

I'm getting a "type or namespace name could not be found" error for a C# WPF app in VS2010. This area of code was compiling fine, but suddenly I'm getting this error. I've tried removing the Project ...
7
votes
3answers
202 views

Placing custom code in a System namespace

Are there any best-practices that state custom code shouldn't be placed in a System namespace? Should System and its children be reserved for Microsoft code? I ask because I'm writing a class library ...
7
votes
4answers
243 views

Conditionally compiling entire namespaces - C#

I was wondering if there is a way to conditionally compile entire namespaces in C#. Or am I left with having to explicitly decorate each source file within the namespace with the preprocessor ...
7
votes
3answers
275 views

Way to get VS 2008 to stop forcing indentation on namespaces?

I've never really been a big fan of the way most editors handle namespaces. They always force you to add an extra pointless level of indentation. For instance, I have a lot of code in a page that I ...
7
votes
1answer
821 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" ...
7
votes
2answers
8k views

WCF service reference namespace differs from original

I'm having a problem regarding namespaces used by my service references. I have a number of WCF services, say with the namespace MyCompany.Services.MyProduct (the actual namespaces are longer). As ...
7
votes
3answers
7k views

How to get all classes within namespace?

Possible Duplicates Taking out all classes of a specific namespace Getting all types in a namespace via reflection Excuse me. How to get all classes within namespace?
7
votes
11answers
3k views

What is the difference between a namespace, a class, an object and an instance?

I'm reading Heads First C# (it's very interesting and user-friendly), but I wondered if anyone had a useful metaphor for describing how Name spaces, Classes, methods, properties, etc. all 'fit ...
6
votes
5answers
217 views

Using Statements vs Namespace path? C#

I recently stopped using "using statements" and instead use the full namespace path of any .NET object that I call. Example: using System; namespace QuizViewer { class Class1 { ...
6
votes
2answers
155 views

Is using System.* Namespaces on your own classes considered Bad Practice?

I have a class called ConfigurationElementCollection<T> It's a generic implementation of System.Configuration.ConfigurationElementCollection It's stored in our solutions', Project.Utility.dll ...
6
votes
3answers
203 views

“using” statement locations within namespace declarations [closed]

Possible Duplicate: Should Usings be inside or outside the namespace I'm supporting some code that, unusually, has all its using statements contained within the namespace declaration. It ...
6
votes
2answers
159 views

A C# class with a null namespace

While going through some legacy code I discovered that you can declare a C# class without placing it in a namespace (in this scenario I have an ASP.NET WebForms application and some of the web forms ...
6
votes
4answers
166 views

What does the using directive do,exactly?

On MSDN I can read what it does, but I would like to know what it does technically (tells compiler where to look for types..)? I mean using as a directive.
6
votes
6answers
765 views

2 objects, exactly the same (except namespace) c#

I'm using a 3rd party's set of webservices, and I've hit a small snag. Before I manually make a method copying each property from the source to the destination, I thought I'd ask here for a better ...
6
votes
5answers
754 views

How to check if string is a namespace

I have a string and I want to check if it represents a proper namespace, eg. System.IO is ok, but System.Lol is not. I guess some reflection should be used, but I can't figure this out. Any ...
6
votes
5answers
6k views

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 ...
6
votes
5answers
752 views

Type/Namespace alias conventions in C#

Are there are any established naming or coding conventions for defining namespace or type aliases in C#? For those who are unaware, the C# language has a feature where aliases can be defined local to ...
6
votes
4answers
568 views

Is there a way to escape root namespace in VB?

namespace ConsoleApplication1 { class Program { static void Main(string[] args) { System.Text.MyCustom mc = new System.Text.MyCustom(); } } } ...
6
votes
2answers
2k views

C#: How to convert a Website project to a Web Project

UPDATE: All of these problems was for converting a Website application to a Web Project in Visual Studio. Once I dug in and I found the solution, as I marked as answer below. Basically, if you are ...
6
votes
4answers
1k views

How to get the namespace alias operator :: to work under C#?

I've come up against the unlikely scenario when I reference two external assemblies that both have the same namespace and type names. When I try to use the type, the compiler throws an error that it ...
6
votes
4answers
765 views

Is there a quick way to remove using statements in C#?

Is there a quick way to determine whether you are using certain namespaces in your application. I want to remove all the unneccessary using statements like using System.Reflection and so on, but I ...
6
votes
3answers
7k views

C#: How to remove namespace information from XML elements

How can I remove the "xmlns:..." namespace information from each XML element in C#?
5
votes
3answers
204 views

C# Namespaces and Assemblies Best Practice

C#: are there any guidelines, best practices when it comes to dividing a solution up into name-spaces and assemblies? Should name spaces normally be nested, with the most low level and fundamental ...

1 2 3 4 5 10