Kokombads
Kokombads

Reputation: 460

How can I make the methods of my created helper class hidden

I saw this class which cannot be viewed by simple means:

enter image description here

how can I make my own helper class's method restricted like this?

Upvotes: 1

Views: 442

Answers (1)

Vijayanath Viswanathan
Vijayanath Viswanathan

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

Related Questions