Tagged Questions
The using-directives tag has no wiki summary.
17
votes
4answers
11k views
the type or namespace name could not be found
I have a C# solution composed of several projects in Visual Studio 2010.
One is a "Test" project (I'll call it "PrjTest"), the other is a Windows Forms Application project (I'll call it "PrjForm"). ...
14
votes
2answers
1k views
Visual Studio or Resharper functionality for placement of using directives
I like to put my using directives inside the current namespace, and not outside as VS and Resharper per default puts them.
Does anyone know of a macro/standard functionality that sorts/removes unused ...
8
votes
3answers
1k views
Default using directives in new C# files
Why does Visual Studio 2008 automatically insert the following using directives into each new C# file I create?
using System;
using System.Collections.Generic;
using System.Text;
What's so ...
7
votes
5answers
180 views
Ways to make use of 'using' directives in C# less tedious
Good programming practice these days tends to mean splitting your stuff up into lots of assemblies and namespaces (for example, see S#arp Architecture, MVC, etc.). However a side-effect of that is ...
7
votes
6answers
544 views
When to use preprocessor directives in .net?
I think this is a simple question so I assume I'm missing something obvious. I don't really ever use preprocessor directives but I was looking at someones code which did and thought it was something ...
7
votes
2answers
953 views
Twitterizer 2 and C# - Namespace could not be found
I have a silly problem with Twitterizer2 and probably me :) . I add the reference twitterizer 2.3.1 from my downloads directory along with the newtonsoft one by right clicking on references and ...
7
votes
7answers
2k views
What's This C# “using” directive?
I saw this C# using statement in a code example:
using StringFormat=System.Drawing.StringFormat;
What's that all about?
6
votes
7answers
245 views
where to put using namespace std;
I'm wondering where to put using namespace std;. I saw a code with the using namespace std; in the int main(){} but I was putting it after #include <iostream>. Where should I put it and does ...
6
votes
4answers
163 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.
5
votes
2answers
73 views
Using Directive to declare a pseudo-type in C#
I inherited some source code that I am just starting to dig though, and i found the previous owner has made some use of the using directive as an alias for a List<T>, but I've never seen this ...
5
votes
6answers
190 views
Ordering of using namespace std; and includes?
I recently saw this code being used in a source file in a C++ project:
using namespace std;
#include <iostream>
Ignoring all issues of whether it's a good idea to have using namespace std at ...
5
votes
4answers
661 views
Scoped using-directive within a struct/class declaration?
I find that my C++ header files are quite hard to read (and really tedious to type) with all the fully-qualified types (which goes as deep as 4 nested namespaces). This is the question (all the ...
5
votes
3answers
171 views
Restricting `using` directives to the current file
Sorry for this silly question, but is there any way to restrict using directives to the current file so that they don't propagate to the files that #include this file?
5
votes
3answers
876 views
Namespace references in C# vs. VB.Net
In VB.Net you can do something like the following without any issues... just ignore the fact that this is a pretty useless class :-)
Imports System
Public Class Class1
Public Shared Function ...
5
votes
2answers
436 views
Have ReSharper keep 'using System;' when optimizing usings
I was wondering if there is some option to keep ReSharper from removing just the using System; directive? Perhaps this is configurable somewhere?
Also, is there a way to have ReSharper sort the ...
4
votes
6answers
282 views
Why is std:: used by experienced coders rather than using namespace std;? [closed]
Possible Duplicate:
Why is 'using namespace std;' considered a bad practice in C++?
The other day when I asked a question someone replied saying if someone asks a question, show ...
4
votes
3answers
618 views
Global “using” directives in VS2010/C#?
I'm pretty sure I know the answer but I'm wondering if there's a way to define a global "using" directive in my C# projects so that I don't have to repeat the directive on top of every code file.
My ...
4
votes
3answers
166 views
organize using directives, re-run tests?
Before making a commit, I prefer to run all hundred-something unit tests in my C# Solution, since they only take a couple minutes to run. However, if I've already run them all, all is well, and then ...
4
votes
2answers
282 views
Two-phase lookup: can I avoid “code bloat”?
Two-phase lookup question:
Is there a more synthetic way to write this code, i.e. avoiding all those using directives?
Something like using CBase<T>; is what I would like, but it is not ...
3
votes
2answers
135 views
Watch window stopped accepting some usings
I am using the debugger to step through my code. The code file I’m in has usings at the top, including for example
using System.Linq;
In Visual Studio 2008 this used to apply to the Watch window ...
3
votes
4answers
270 views
Organizing using directives [closed]
I've been using ReSharper for the past months and, advertising aside, I can't see myself coding without it. Since I love living on the bleeding "What the hell just went wrong" edge, I decided to try ...
2
votes
2answers
210 views
When do we need to put using directives inside a namespace scope?
I don't know why Asp.net MVC developers put the using directives inside System.Web.Mvc namespace as follows.
namespace System.Web.Mvc
{
using System;
using System.Collections.ObjectModel;
...
2
votes
1answer
504 views
Using directive to specify class alias in C++/CLI
In C#, there are three types of using directives:
using System; // Specify Namespace
using Diag = System.Diagnostics; // Specify Namespace Alias
using DBG = System.Diagnostics.Debug; // Specify ...
1
vote
4answers
88 views
How to use 'Using' keyword in ASP.NET page without code behind
I want to include some namespaces with their classes in my asp.net application. It is possible with using keyword ?
I have this:
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" ...
1
vote
1answer
57 views
Operating System Directive in Delphi Prism
Since I am writing a program that will eventually run on Windows and Linux environment compiled from the same project files, I wanted to test and see how well the Operating System directives are. So, ...
1
vote
1answer
54 views
Javascript: besides “use strict”, which other “use” directives are there?
besides "use strict", which other "use" directives are there?
apparently my short question doesn't meet stackoverflow's quality standards so I have to add this sentence and more to allow me to post ...
1
vote
2answers
162 views
Difference between 'using' and '#using' directive?
According to MSDN is:
The using directive has two uses:
1)To allow the use of types in a
namespace so that you do not have to
qualify the use of a type in that
namespace:
using ...
1
vote
2answers
630 views
distance calculation error in c++
#include <iostream>
#include <cmath>
#include <vector>
using namespace std;
int square(int a){
return a*a;
}
struct Point{
int x,y;
};
int distance (const Point& ...
1
vote
5answers
104 views
ASP.net c#, how do I know what to use?
I keep coming accross code samples online for ASP.net c#, however they never seem to list which namespaces they include, for example:
using System.Data.SqlClient;
etc etc
Am I missing something ...
1
vote
3answers
144 views
Is there a way to group “using” directives in a separate file?
Say you have some boiler plate using statements. Say something like this:
#if !NUNIT
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Category = ...
1
vote
2answers
86 views
vs using [namespace.x.xx]?
I have seen that you can either do
using System.IO
and use
Path.GetDirectoryName(blah blah)
OR directly use
System.IO.Path.GetDirectoryName(blah blah);
Is there any difference between them ...
1
vote
1answer
39 views
Prevent Visual Studio from removing certain using directives
I frequently use the "Remove and sort usings" feature of VS/PowerCommands - in fact, with the help of R#, I make VS do this for me every time i save the document, which I almost reflexively do almost ...
1
vote
5answers
188 views
What purpose does “using” serve when used the following way
What purpose does “using” serve when used the following way:-
ONE EXAMPLE IS THIS, (AN ANSWERER- @richj - USED THIS CODE TO SOLVE A PROBLEM THANKS)
private Method(SqlConnection connection)
{
...
1
vote
2answers
5k views
The type or namespace cannot be found (are you missing a using directive or an assembly reference?)
I get the following error when I try to compile my C# program:
The type or namespace name 'Login' could not be found (are you missing a using directive or an assembly reference?)
using System;
...
1
vote
1answer
148 views
How to prevent ReSharper from shortening namespaces when adding using directives?
When I use ReSharper to add a using directive (using Alt+Enter) it removes "unnecessary" parts of the namespace. I prefer using the full namespace which is also the behavior of Visual Studio.
...
1
vote
5answers
374 views
Inheriting from classes
In C#, how many classes can you inherit from?
When you write:
using System.Web.UI;
is that considered inheriting from a class?
0
votes
1answer
89 views
Dynamically loading style sheets based on Server Controls
I have a website that will need to load basic style components based on the model (determined on backend SQL server based on user input)
The concept is that this website can contained parameterized ...
0
votes
1answer
203 views
What's the use of #ifdef and #endif processor directives in iPhone?
I want to know about the use of #ifdef, #ifndef and #endif and which case, have to used those conditionals and what's the use of it? Whats the difference between the #ifdef and #ifndef?
For eg:
...
0
votes
2answers
38 views
Using directives in new files
Is it possible to have additional "using" directives automatically added to my new aspx.cs files so that I do not have to keep typing the same ones over and over again (i.e. custom namespace using ...
0
votes
1answer
531 views
missing a using directive or an assembly reference
I'm in the process of writing a small asp.net mvc application that is using the northwind.mdf. When building the solution I get this error:
Error 1 The type or namespace name 'Order' could not be ...
0
votes
6answers
2k views
C# using namespace directive in nested namespaces
Right, I've usually used 'using' directives as follows
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace AwesomeLib
{
//awesome award winning class ...
0
votes
6answers
192 views
How to avoid many using operators in every .cs file?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
I have to put the above code in almost every .cs file. Is there any way to avoid it?
0
votes
6answers
2k views
Exposing the methods of a DLL in C#
After someone creates a DLL in C# using the Microsoft Visual development environment, how would another programmer take that code, make a new project that includes the DLL's source and make a GUI that ...