-1
A project is Webapplication and the other one is like Console:
"Projectste" Nomedasolution Structure below:
Business(Pasta)
- Businessdal(project)
- Arquivodal.Cs
- Businessdal(project)
Console(project)
- Business.Cs
//Project Businessdal, Arquivodal.Cs
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
I believe that is your question. https://stackoverflow.com/questions/740937/accessing-variables-from-other-namespaces
– Bruno Pinela