I'm writing a dll in VisualStudio. This library contains two classes with the same name but in different namespaces.
public namespace XCharting {
public class Series { }
}
public namespace ObjectModel {
public class Series { }
}
Users of my library use first one. Other one is used in other my dll (In future it is possible that users will need the second class too).
The problem is when users write "Series" in their code. IntelliSense suggest to add 1)ObjectModel namespce 2)XCharting namespace
Is is tossible to change an order of suggestions or hide suggestion of adding ObjectModel namespce?