What is the equivalent of Java's default (package) access in C#? Is there one? Is there anyway to restrict access to a particular namespace?
The Problem:
I'm trying to restrict access to certain methods to just my NUnit tests - in JUnit I would do this by making the methods package access and having the test in the same package but under src/test/java instead of src/main/java. How can I achieve something similar in C#?
Note: I can't make the methods internal
because my tests are in a separate assembly - as is the NUnit convention - or is it?
C# does not have package or namespace level access - only assembly level - which is also known as internal access.
However, you can make your methods internal and use the InternalsVisibleTo attribute to expose them to your unit test assembly.
You may find it useful to read this post and this one.
There's nothing that's an exact equivalent. The internal keyword is close, but it limits by assembly, not by namespace.
If something is tagged with internal, it can only be accessed by code within the same assembly (dll, exe)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With