Tagged Questions
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?
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
3answers
875 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 ...
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 = ...
0
votes
1answer
530 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 ...