好的,这就是问题所在。我有一个第三方 c# lib,我正在写一个关于它的工具。因此,我想从另一个应用程序监视一些静态容器,但我当然无法在我的应用程序域中访问它们。一个简单的例子是:
namespace DefinedInAsembly1
{
public class Resource
{
public static IList<DateTime> DateTimes {get;set;}
}
}
namespace DefinedInAssembly2
{
class RunningProgram
{
static void Main(string[] args)
{
while(true)
{
Resource.DateTimes.Add(DateTime.Now);
Thread.Sleep(10000);
}
}
}
}
namespace DefinedInAssembly3
{
class ToolProgram
{
static void Main(string[] args)
{
//Accessing Resource.DateTimes with the values inserted from RunningProgram
//Any ideas?
}
}
}