Scripting.Dictionary

sgadde99

New member
Joined
Oct 16, 2009
Messages
2
Programming Experience
10+
Dictionary is amibiguous in the name space scripting

i am getting this error.How will i solve this error?
Any help appreciated.
 
amibiguous open to or having several possible meanings or interpretations; equivocal: an ambiguous answer, so by the sound of it you have somthing repeated in you code, possibly, read the error message or try MSDN for an answer?
 
This usually means you have declared Something, and that Something can be two different things depending on the namespace. You could perhaps have This.Something and That.Something, but when you only say Something the compiler doesn't which one you mean, so you have to qualify the expression to say which, or limit your namespace imports to avoid confusion.
 
Back
Top