Click here to Skip to main content
15,905,504 members
Home / Discussions / C#
   

C#

 
GeneralRe: week numbers Pin
robmays16-Apr-04 0:25
robmays16-Apr-04 0:25 
GeneralRe: week numbers Pin
Stefan Troschuetz16-Apr-04 1:02
Stefan Troschuetz16-Apr-04 1:02 
GeneralRe: week numbers Pin
Colin Angus Mackay16-Apr-04 2:13
Colin Angus Mackay16-Apr-04 2:13 
GeneralRe: week numbers Pin
robmays16-Apr-04 2:23
robmays16-Apr-04 2:23 
GeneralRe: week numbers Pin
Stefan Troschuetz16-Apr-04 2:45
Stefan Troschuetz16-Apr-04 2:45 
GeneralRe: week numbers Pin
Colin Angus Mackay16-Apr-04 3:05
Colin Angus Mackay16-Apr-04 3:05 
GeneralRe: week numbers Pin
Bee Master16-Apr-04 3:06
Bee Master16-Apr-04 3:06 
GeneralRe: week numbers Pin
Stefan Troschuetz16-Apr-04 3:27
Stefan Troschuetz16-Apr-04 3:27 
GeneralRe: week numbers Pin
robmays16-Apr-04 4:06
robmays16-Apr-04 4:06 
GeneralRe: week numbers Pin
Colin Angus Mackay16-Apr-04 4:12
Colin Angus Mackay16-Apr-04 4:12 
GeneralRe: week numbers Pin
Heath Stewart16-Apr-04 6:41
protectorHeath Stewart16-Apr-04 6:41 
GeneralRe: week numbers Pin
robmays16-Apr-04 6:54
robmays16-Apr-04 6:54 
GeneralRe: week numbers Pin
Heath Stewart16-Apr-04 7:47
protectorHeath Stewart16-Apr-04 7:47 
GeneralRe: week numbers Pin
robmays16-Apr-04 8:07
robmays16-Apr-04 8:07 
GeneralRe: week numbers Pin
robmays16-Apr-04 8:35
robmays16-Apr-04 8:35 
GeneralRe: week numbers Pin
robmays16-Apr-04 9:59
robmays16-Apr-04 9:59 
GeneralRe: week numbers Pin
robmays16-Apr-04 19:33
robmays16-Apr-04 19:33 
GeneralRe: week numbers Pin
Heath Stewart19-Apr-04 2:06
protectorHeath Stewart19-Apr-04 2:06 
Generalan error with tabpage Pin
robmays19-Apr-04 3:57
robmays19-Apr-04 3:57 
GeneralRe: an error with tabpage Pin
Heath Stewart19-Apr-04 3:58
protectorHeath Stewart19-Apr-04 3:58 
GeneralRe: an error with tabpage Pin
robmays19-Apr-04 4:06
robmays19-Apr-04 4:06 
GeneralRe: an error with tabpage Pin
Heath Stewart19-Apr-04 4:21
protectorHeath Stewart19-Apr-04 4:21 
The project name doesn't mean anything, except that the default root namespace is the project name. If you use folders in your project, source files added to those folders are defaulted to the root namespace plus the folder name(s) appended in hierarchical order. Just look at the source files to see what namespace they're in.

Also, do not make a namespace for each separate class! C'mon, think about it. Does each control in System.Windows.Forms have a separate namespace? No, they're all grouped into that namespace. Namespaces are there to logically group classes and other members, just like System includes all the ubiquitous stuff, and System.Data includes all the core ADO.NET classes, and System.Web includes all the core ASP.NET class while System.Web.UI.WebControls includes a bunch of web controls.

If your current class is in a different namespace, then you must import all namespaces that are different - regardless of whether or not they're in your current project! - or you must type in their fully-qualified type name (namespace + class/interface/struct/enum name).

 

Microsoft MVP, Visual C#
My Articles
GeneralRe: an error with tabpage Pin
robmays19-Apr-04 6:14
robmays19-Apr-04 6:14 
GeneralRe: an error with tabpage Pin
Heath Stewart19-Apr-04 6:27
protectorHeath Stewart19-Apr-04 6:27 
GeneralRe: an error with tabpage Pin
robmays19-Apr-04 6:32
robmays19-Apr-04 6:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.