Tagged Questions

7
votes
6answers
534 views

Are unused Using directives expensive? [closed]

Just wondering what the cost is of unused Using directives. I'm enjoying using Resharper to remove them, but I hope to gain a bit of a performance boost as well. Closed as dup …
5
votes
3answers
373 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 …
4
votes
7answers
457 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?
4
votes
2answers
215 views

Have ReSharper keep ‘using System;’ when optimizing usings

Hello. 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 h …
3
votes
3answers
206 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 Publi …
3
votes
4answers
135 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 …
2
votes
2answers
140 views

Visual Studio or Resharper functionality for placement of using directives

Hi, 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 …
1
vote
5answers
178 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
409 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 …
0
votes
1answer
100 views

Where to put the using directives on top. Which one is better and why? [closed]

Duplicate of : should-usings-be-inside-or-outside-the-namespace I've seen two different ways of starting off a given class. Many people do it this way: namespace MyNamespace { …