Class library reference problem
        Posted  
        
            by Anindya Chatterjee
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Anindya Chatterjee
        
        
        
        Published on 2010-06-13T16:03:37Z
        Indexed on 
            2010/06/13
            16:12 UTC
        
        
        Read the original article
        Hit count: 308
        
I am building a class library and using its default namespace as "System". There suppose I am creating a generic data structure say PriorityQueue and putting it under System.Collections.Generic namespace.
Now when I am referencing that library from another project, I can't see PriorityQueue under "System.Collections.Generic" namespace anymore. Though the library is referenced I can not access any of the classes in it.
Can anyone shed some light on it please. I know that if I change the namespace everything will be ok, but I want to create a seamless integration like .net framework itself with other project, so that one can refer the library and forget about its namespaces.
© Stack Overflow or respective owner