Re: Namespace question
- From: "Andrew Faust" <andrew@xxxxxxxxxxxxxxx>
- Date: Fri, 11 Jul 2008 11:08:59 -0600
Correct me if my assumption is wrong, but can you not have a child namespace if the Parent Namespace has a class inside it?
No, this is supported. If it weren't the System namespace wouldn't be able to host any classes.
For your class to be visible in another assembly you need to make the class public, reference the class in the other app and reference the full namespace (either using or directly in the code).
Andrew
"TheVillageCodingIdiot" <whosyodaddy1019@xxxxxxxxxxx> wrote in message news:66d7aeff-d72b-4f4b-9c13-fdd01dd5b38e@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
On Jul 8, 8:44 am, TheVillageCodingIdiot <whosyodaddy1...@xxxxxxxxxxx>
wrote:
Here is the deal, there is 1 DLL with a namespace of Billing and in
that namespace is a single class called corebillingreports. I added
the DLL into my project and trying to setup another class that
inherits from Billing.CoreBillingReports class. I try to setup the
namespace for this as Billing.CompanyA with a class named ActiveBill.
Active Bill inherits from Billing.CoreBillingReports class but it cant
get it to work. When i set the namespace Billing.CompanyA I do not see
CoreBillingReports class available under the Billing Namespace. My
goal is to create a NameSpace where it goes Billing.[CompanyName] and
in the company namespace all the different billing report classes. Thx
in advance
''''''''''''''''''''''''''''''''''''''''DLL
NameSpace Billing
Class CoreBillingReports
sub test ()
End sub
End class
End NameSpace
'''''''''''''''''''''''''''''''''''''Class created for windows form
project
NameSpace Billing.CompanyA
Class ActiveBill
Inherits Billing.CoreBillingReports 'Dont see
CoreBillingReports class listed
Sub A ()
End Sub
End Class
End NameSpace
Ok i was able to figure it out I think. Correct me if my assumption is
wrong, but can you not have a child namespace if the Parent Namespace
has a class inside it? What I did was move the
Billing.CoreBillingReports class into its own namespace of
Billing.CoreBillingReports.CoreBillingClass and now I can see CSP
under Billing.
.
- References:
- Namespace question
- From: TheVillageCodingIdiot
- Re: Namespace question
- From: TheVillageCodingIdiot
- Namespace question
- Prev by Date: Re: StatusStrip control leaks its collection items
- Next by Date: Re: C# App Decompiling question
- Previous by thread: Re: Namespace question
- Next by thread: How to check if a directory is writable (without being virtualized.)
- Index(es):
Relevant Pages
|