One project is WebApplication and the other is a Console :
"Test Project" SolutionName Structure below:
Business (Folder)
Console (project)
// BusinessDAL Project, DLL.cs file
using Console; //Isto não funciona, já tentei com e sem.
namespace BusinessDAL
{
public class ArquivoDAL
{
public static string caminhos(){
string valor = Console.Caminho; // Nâo funciona
string valor = Console.Business.Caminho; // Nâo funciona
string valor = Caminho; // Nâo funciona
return valor;
}
}
}
// Console Project, Business.cs file
namespace Console
{
public class Business
{
public static string Caminho = ConfigurationManager.AppSettings.Get("Path").ToString();
//Isto já foi testado também
public static string NomeDoProduto
{
get { return NomeDoProduto; }
set { NomeDoProduto = Caminho ; }
}
}
}
Error Message: the name 'Console' does not exist in the current context