When two namespaces are the same in different dlls
Where you reference the dll, in the Aliases property give an alias using the syntax: global, myalias. Here "myalias" is your alias.
In the first line of your C# file, specify:
extern alias myalias;
Then reference the namespace as:
using myalias.yournamespace;
In the first line of your C# file, specify:
extern alias myalias;
Then reference the namespace as:
using myalias.yournamespace;
Comments
Post a Comment