I have two projects in Microsoft Visual Studio 2008, but I can't access the objects/namespace from one with the other.
here is an example from my GCController project:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
namespace GCController
{
[Guid("9949f4f1-92e6-4709-85a8-12c816b6ceb4")]
public interface IGCController
{
// ... //
}
}
I try to access it using:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace GC7890ConsoleAplication
{
class Program
{
static void Main(string[] args)
{
GCController.IGCController c;
}
}
}
but I get "type or namespace "GCController" could not be found"
Can anyone help?
Thanks