I have three custom namespaces, two of which I'm attempting to import into the other with "using."
<code>
using System;
using InvoiceClasses;
using PlanClasses;
namespace SubaccountClasses
{
/// <summary>
/// Description of Subaccount.
/// </summary>
public abstract class Subaccount
{
private string _subaccountNumber;
private string _comments;
private string _notes;
private string _city;
</code>
SO why do I get an error that InvoiceClasses and Plan cannot be found? I've used InvoiceClasses sucessfully in an aspx file already. All namespaces are in the same directory.
Thanks for any help!
<code>
using System;
using InvoiceClasses;
using PlanClasses;
namespace SubaccountClasses
{
/// <summary>
/// Description of Subaccount.
/// </summary>
public abstract class Subaccount
{
private string _subaccountNumber;
private string _comments;
private string _notes;
private string _city;
</code>
SO why do I get an error that InvoiceClasses and Plan cannot be found? I've used InvoiceClasses sucessfully in an aspx file already. All namespaces are in the same directory.
Thanks for any help!