hi
I have a public class with a private method inside this class, I want to call this private method from another class. I know I can use reflection or delegate but I should do it without using reflection or delegate.
- public class MyClass
- {
- private void Method()
- {
-
- }
- }
how to call Method?
thanks