Hi ,
I would like to use nested namespace .
I have 3 namespace as dll's :
Namespace A
Namespace B
Namespace C
And i want to have some namespace that contain them all , some thing like
Namespace MyComp.A.B.C
Or
Namespace MyComp.A.B or Namespace B.C And so on ...
(e.g ---> System.Data)
please help 14 3246
By default, your project name becomes the "root namespace" of your assembly.
If you are using VS.NET, just right click on the project in the Solution
Explorer and you'll see an option to change the name of the Root Namespace
there.
To create sub-namespaces, do exactly what you wrote down below (remembering
to end each namespace):
Namespace A
Namespace B
Namespace C
Public Class Foo
End Class
End Namespace
End Namespace
End Namespace
All 3 namespaces are part of the root namespace (project name by default or
you change in project properties) and Foo is in the namespace:
RootNamespace.A.B.C.Foo
"Tiraman" <ti*****@netvision.net.il> wrote in message
news:eU**************@TK2MSFTNGP09.phx.gbl... Hi ,
I would like to use nested namespace .
I have 3 namespace as dll's : Namespace A Namespace B Namespace C
And i want to have some namespace that contain them all , some thing like
Namespace MyComp.A.B.C Or Namespace MyComp.A.B or Namespace B.C And so on ...
(e.g ---> System.Data)
please help
By default, your project name becomes the "root namespace" of your assembly.
If you are using VS.NET, just right click on the project in the Solution
Explorer and you'll see an option to change the name of the Root Namespace
there.
To create sub-namespaces, do exactly what you wrote down below (remembering
to end each namespace):
Namespace A
Namespace B
Namespace C
Public Class Foo
End Class
End Namespace
End Namespace
End Namespace
All 3 namespaces are part of the root namespace (project name by default or
you change in project properties) and Foo is in the namespace:
RootNamespace.A.B.C.Foo
"Tiraman" <ti*****@netvision.net.il> wrote in message
news:eU**************@TK2MSFTNGP09.phx.gbl... Hi ,
I would like to use nested namespace .
I have 3 namespace as dll's : Namespace A Namespace B Namespace C
And i want to have some namespace that contain them all , some thing like
Namespace MyComp.A.B.C Or Namespace MyComp.A.B or Namespace B.C And so on ...
(e.g ---> System.Data)
please help
namespace MyCompany.A.B.C {
class Foo {
}
}
Gives a class called MyCompany.A.B.C.Foo
"Tiraman" <ti*****@netvision.net.il> wrote in message
news:eU**************@TK2MSFTNGP09.phx.gbl... Hi ,
I would like to use nested namespace .
I have 3 namespace as dll's : Namespace A Namespace B Namespace C
And i want to have some namespace that contain them all , some thing like
Namespace MyComp.A.B.C Or Namespace MyComp.A.B or Namespace B.C And so on ...
(e.g ---> System.Data)
please help
namespace MyCompany.A.B.C {
class Foo {
}
}
Gives a class called MyCompany.A.B.C.Foo
"Tiraman" <ti*****@netvision.net.il> wrote in message
news:eU**************@TK2MSFTNGP09.phx.gbl... Hi ,
I would like to use nested namespace .
I have 3 namespace as dll's : Namespace A Namespace B Namespace C
And i want to have some namespace that contain them all , some thing like
Namespace MyComp.A.B.C Or Namespace MyComp.A.B or Namespace B.C And so on ...
(e.g ---> System.Data)
please help
Hi Tiraman,
First of all, I would like to confirm my understanding of your issue.
From your description, I understand that you wants to use a nested
namespace.
Have I fully understood you? If there is anything I misunderstood, please
feel free to let me know.
I think you may take a look at the two links below.
Namespace Naming Guidelines http://msdn.microsoft.com/library/de...us/cpgenref/ht
ml/cpconnamespacenamingguidelines.asp
Namespace Statement http://msdn.microsoft.com/library/de...us/vblr7/html/
vastmnamespace.asp
Please apply my suggestion above and let me know if it helps resolve your
problem.
Best regards,
Peter Huang
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.
Hi Tiraman,
First of all, I would like to confirm my understanding of your issue.
From your description, I understand that you wants to use a nested
namespace.
Have I fully understood you? If there is anything I misunderstood, please
feel free to let me know.
I think you may take a look at the two links below.
Namespace Naming Guidelines http://msdn.microsoft.com/library/de...us/cpgenref/ht
ml/cpconnamespacenamingguidelines.asp
Namespace Statement http://msdn.microsoft.com/library/de...us/vblr7/html/
vastmnamespace.asp
Please apply my suggestion above and let me know if it helps resolve your
problem.
Best regards,
Peter Huang
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.
Ok ,
I found where I can change the Root Namespace which is good but let me
describe you what I want to do .
lets say that I have a company name Comp and we have 3 Departments (A,B,C)
now each department working on some namespace and on its class's and I want
to make one namespace
that will include them all (not the code !!! just the call or the import to
those namespace's ) and if we will open a new department tomorrow
I want the ability to add a call or include or import to the new department
(namespace) into the root namespace
so every one that use this root namespace will be able to use other public
functions .
10x
"Scott M." <s-***@BADSPAMsnet.net> wrote in message
news:u6**************@TK2MSFTNGP09.phx.gbl... By default, your project name becomes the "root namespace" of your
assembly. If you are using VS.NET, just right click on the project in the Solution Explorer and you'll see an option to change the name of the Root Namespace there.
To create sub-namespaces, do exactly what you wrote down below
(remembering to end each namespace):
Namespace A Namespace B Namespace C
Public Class Foo
End Class
End Namespace End Namespace End Namespace
All 3 namespaces are part of the root namespace (project name by default
or you change in project properties) and Foo is in the namespace:
RootNamespace.A.B.C.Foo
"Tiraman" <ti*****@netvision.net.il> wrote in message news:eU**************@TK2MSFTNGP09.phx.gbl... Hi ,
I would like to use nested namespace .
I have 3 namespace as dll's : Namespace A Namespace B Namespace C
And i want to have some namespace that contain them all , some thing
like Namespace MyComp.A.B.C Or Namespace MyComp.A.B or Namespace B.C And so on ...
(e.g ---> System.Data)
please help
Ok ,
I found where I can change the Root Namespace which is good but let me
describe you what I want to do .
lets say that I have a company name Comp and we have 3 Departments (A,B,C)
now each department working on some namespace and on its class's and I want
to make one namespace
that will include them all (not the code !!! just the call or the import to
those namespace's ) and if we will open a new department tomorrow
I want the ability to add a call or include or import to the new department
(namespace) into the root namespace
so every one that use this root namespace will be able to use other public
functions .
10x
"Scott M." <s-***@BADSPAMsnet.net> wrote in message
news:u6**************@TK2MSFTNGP09.phx.gbl... By default, your project name becomes the "root namespace" of your
assembly. If you are using VS.NET, just right click on the project in the Solution Explorer and you'll see an option to change the name of the Root Namespace there.
To create sub-namespaces, do exactly what you wrote down below
(remembering to end each namespace):
Namespace A Namespace B Namespace C
Public Class Foo
End Class
End Namespace End Namespace End Namespace
All 3 namespaces are part of the root namespace (project name by default
or you change in project properties) and Foo is in the namespace:
RootNamespace.A.B.C.Foo
"Tiraman" <ti*****@netvision.net.il> wrote in message news:eU**************@TK2MSFTNGP09.phx.gbl... Hi ,
I would like to use nested namespace .
I have 3 namespace as dll's : Namespace A Namespace B Namespace C
And i want to have some namespace that contain them all , some thing
like Namespace MyComp.A.B.C Or Namespace MyComp.A.B or Namespace B.C And so on ...
(e.g ---> System.Data)
please help
Hi Peter ,
your suggestion was good and the articles helped me :-)
let me ask you one more thing please ,
I created a dll name A.B.C.dll and i put that dll under c:\MyDlls\
The Dll Namespace Is A.B.C and i have a class name Test under that dll .
when i m doing this in my aspx file
Import Namespace="A.B.C"
And Than
Dim myParam As New Test
I m getting an error that my Test is not defined
But when i m moving the dll into the bin folder under my project every thing
comes in order :-)
i will be happy to know how to put all of my dll's in one place and use them
from my projects with out moving them into the bin folder .
bye and 10x for your help :-)
""Peter Huang"" <v-******@online.microsoft.com> wrote in message
news:2P**************@cpmsftngxa06.phx.gbl... Hi Tiraman,
First of all, I would like to confirm my understanding of your issue. From your description, I understand that you wants to use a nested namespace. Have I fully understood you? If there is anything I misunderstood, please feel free to let me know.
I think you may take a look at the two links below. Namespace Naming Guidelines http://msdn.microsoft.com/library/de...us/cpgenref/ht ml/cpconnamespacenamingguidelines.asp
Namespace Statement http://msdn.microsoft.com/library/de...us/vblr7/html/ vastmnamespace.asp
Please apply my suggestion above and let me know if it helps resolve your problem.
Best regards,
Peter Huang Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security This posting is provided "AS IS" with no warranties, and confers no
rights.
Hi Peter ,
your suggestion was good and the articles helped me :-)
let me ask you one more thing please ,
I created a dll name A.B.C.dll and i put that dll under c:\MyDlls\
The Dll Namespace Is A.B.C and i have a class name Test under that dll .
when i m doing this in my aspx file
Import Namespace="A.B.C"
And Than
Dim myParam As New Test
I m getting an error that my Test is not defined
But when i m moving the dll into the bin folder under my project every thing
comes in order :-)
i will be happy to know how to put all of my dll's in one place and use them
from my projects with out moving them into the bin folder .
bye and 10x for your help :-)
""Peter Huang"" <v-******@online.microsoft.com> wrote in message
news:2P**************@cpmsftngxa06.phx.gbl... Hi Tiraman,
First of all, I would like to confirm my understanding of your issue. From your description, I understand that you wants to use a nested namespace. Have I fully understood you? If there is anything I misunderstood, please feel free to let me know.
I think you may take a look at the two links below. Namespace Naming Guidelines http://msdn.microsoft.com/library/de...us/cpgenref/ht ml/cpconnamespacenamingguidelines.asp
Namespace Statement http://msdn.microsoft.com/library/de...us/vblr7/html/ vastmnamespace.asp
Please apply my suggestion above and let me know if it helps resolve your problem.
Best regards,
Peter Huang Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security This posting is provided "AS IS" with no warranties, and confers no
rights.
Hi Tiraman,
Thank you for your quick response.
From my understanding, the error will be orrcur in the runtime, am I right?
As I reply in another post in this newsgroup titled "Namespace Question",
this may be caused by that the Test.Dll is not in the three place the
ASP.NET application will search the assembly.
(1.GAC 2.bin 3.codebase)
You may refer to that issue for detailed information.
Best regards,
Peter Huang
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.
Hi Tiraman,
Thank you for your quick response.
From my understanding, the error will be orrcur in the runtime, am I right?
As I reply in another post in this newsgroup titled "Namespace Question",
this may be caused by that the Test.Dll is not in the three place the
ASP.NET application will search the assembly.
(1.GAC 2.bin 3.codebase)
You may refer to that issue for detailed information.
Best regards,
Peter Huang
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights. This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: Joshua Beall |
last post by:
Hi All,
I remember reading that both nested classes and namespaces would be
available in PHP5. I know that namespaces got canceled (much sadness...),
however, I *thought* that nested classes...
|
by: Rubén Campos |
last post by:
Organizing classes, types, structures, enums and whatever other entities
into nested namespaces requires to include into every header and
implementation file the complete path of namespaces. Let me...
|
by: SpOiLeR |
last post by:
Why doesn't following code compile? Problem line is commented in code.
---------------------- Cut here-------------------------------
#include <iostream>
#include <list>
#include <string>
...
|
by: Sebastian Dau |
last post by:
Hi there,
I'm trying to design a form with the help of the VS2003 C++ Forms designer.
This works pretty good as long as the form is not included in a nested
namespace.
Example (works)
...
|
by: Tiraman |
last post by:
Hi ,
I would like to use nested namespace .
I have 3 namespace as dll's :
Namespace A
Namespace B
Namespace C
And i want to have some namespace that contain them all , some thing like
|
by: Tim N. van der Leeuw |
last post by:
Hi,
The following might be documented somewhere, but it hit me unexpectedly
and I couldn't exactly find this in the manual either.
Problem is, that I cannot use augmented assignment operators...
|
by: Josiah Manson |
last post by:
I found that I was repeating the same couple of lines over and over in
a function and decided to split those lines into a nested function
after copying one too many minor changes all over. The only...
|
by: Wayne Shu |
last post by:
When I read the chapter of the namespace of the book C++ Primer(3e).
It explain the using directive as follow:
"A using directive makes the namespace member names visible as if they
were declared...
|
by: Wolfgang |
last post by:
Hi,
I'm trying to understand how could I inherit a nested class. Say for
instance - I've four classes namely class A, class B, class C, class
D.
class B is nested inside class A
class D is...
|
by: linyimin |
last post by:
Spring Startup Analyzer generates an interactive Spring application startup report that lets you understand what contributes to the application startup time and helps to optimize it. Support for...
|
by: erikbower65 |
last post by:
Here's a concise step-by-step guide for manually installing IntelliJ IDEA:
1. Download: Visit the official JetBrains website and download the IntelliJ IDEA Community or Ultimate edition based on...
|
by: kcodez |
last post by:
As a H5 game development enthusiast, I recently wrote a very interesting little game - Toy Claw ((http://claw.kjeek.com/))。Here I will summarize and share the development experience here, and hope it...
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 6 Sept 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM)
The start time is equivalent to 19:00 (7PM) in Central...
|
by: DJRhino1175 |
last post by:
When I run this code I get an error, its Run-time error# 424 Object required...This is my first attempt at doing something like this. I test the entire code and it worked until I added this -
If...
|
by: Rina0 |
last post by:
I am looking for a Python code to find the longest common subsequence of two strings. I found this blog post that describes the length of longest common subsequence problem and provides a solution in...
|
by: lllomh |
last post by:
Define the method first
this.state = {
buttonBackgroundColor: 'green',
isBlinking: false, // A new status is added to identify whether the button is blinking or not
}
autoStart=()=>{
|
by: lllomh |
last post by:
How does React native implement an English player?
|
by: DJRhino |
last post by:
Was curious if anyone else was having this same issue or not....
I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
| |