Tagged Questions
14
votes
2answers
2k 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
2k 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
2answers
955 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 ...
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 ...