c# - Why can't I reference a class in another namespace in another project within the same solution? -


i have created namespace in project within same solution. when type using other namespace shows up. cannot see public class within namespace. what's wrong ?

since type public, sounds simple missing project reference between two. right click references , add new reference, watch references shouldn't become circular (i.e. <===> b, or ===> b ===> c ===> a). actually, vs ide doesn't let this, can done (accidentally or purposefully) via command-line tools.


Comments

Popular posts from this blog

ruby - When to use an ORM (Sequel, Datamapper, AR, etc.) vs. pure SQL for querying -

php - PHPDoc: @return void necessary? -

c++ - Convert big endian to little endian when reading from a binary file -