Just download a fresh copy of pro and am getting the error 'Nested type ‘VO’ does not exist in the type ‘Agent’…
pointing to this:
internal class WorkerContext {
public Agent.VO[] vos = new Agent.VO[20];
}
any ideas?
Thanks!
Just download a fresh copy of pro and am getting the error 'Nested type ‘VO’ does not exist in the type ‘Agent’…
pointing to this:
internal class WorkerContext {
public Agent.VO[] vos = new Agent.VO[20];
}
any ideas?
Thanks!
Hi
There is some other class in your project with the name “Agent”. I try to encapsulate all classes in namespaces, but some other plugin authors don’t do that (or maybe it is a class you have written), so there will be a conflict.
Try to find that class and either rename it or put it inside a namespace. Then everything will work.
DOH! didn’t think about that… thanks for the quick response!