Reputation: 460
I saw this class which cannot be viewed by simple means:
how can I make my own helper class's method restricted like this?
Upvotes: 1
Views: 442
Reputation: 8551
The class you see is with System.dll, which is not the part of your solution but .Net library. If you really want to acheive the same what you can do is you can create class library seperatley, build it and add that dll to your solution instead of creating class library inside your solution. As project is not the part of solution people can't see code directly. But still they can disassemble to see it.
Upvotes: 1