Tagged Questions
22
votes
5answers
14k 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"). ...
8
votes
2answers
1k 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
5answers
185 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
588 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
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
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.
5
votes
2answers
80 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
3answers
904 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
445 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
3answers
658 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
169 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 ...
3
votes
2answers
139 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
274 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
227 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;
...
1
vote
5answers
105 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
147 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
5answers
189 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
5answers
379 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
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
194 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 ...