I found this web site: How to use a Class from one C# project with another C# project
however, the class that I want to access is the following. I am using the namespace to access the value but does not work. Project B
namespace Elettric80.LgvManager
{
class ConveyorStation : MachineStation
{
public ConveyorStation(LGVManager lgvManager, string name, uint depth,
uint width, uint maxLevels)
: base(lgvManager, name, depth, width, maxLevels)
{
}
}
}
This is how I am trying to access: project A
using Elettric80.LgvManager;
private ConveyorStation conveyorStation;
txtvalue.text = conveyorStation.value.ToString();
thank you