7 Replies
If I'm correct
x
is only accessible within the same .cs fileNo, the assembly is the binary file your project compiles to. An exe or a dll.
Also worth noting that you can use the
InternalsVisibleTo
attribute in an assembly to bypass this (useful for testing projects)I don't know if this has actually been implemented, but there was a planned
file
keyword which would do what you saidCan there be different assemblies in a project?
no, a project compiles to an assembly
but there can be multiple projects in a solution
✅ This post has been marked as answered!