Monday, 15 August 2011

c# - Hide namespace from IntelliSense or change order of suggested namespaces (Customizing IntelliSense) -



c# - Hide namespace from IntelliSense or change order of suggested namespaces (Customizing IntelliSense) -

i'm writing dll in visualstudio. library contains 2 classes same name in different namespaces.

public namespace xcharting { public class series { } } public namespace objectmodel { public class series { } }

users of library utilize first one. other 1 used in other dll (in future possible users need sec class too).

the problem when users write "series" in code. intellisense suggest add together 1)objectmodel namespce 2)xcharting namespace

is tossible alter order of suggestions or hide suggestion of adding objectmodel namespce?

it seems impossible.

c# visual-studio namespaces intellisense

No comments:

Post a Comment