0
I'm not exactly sure what you mean by the question, but if your asking can you use the private access modifier like in any of the following situations then yes (this doesn't cover every situation): private class TestClass { /*...*/ } private void TestMethod() { /*...*/ } private int _testField; private int TestProperty { get; set; }
10th Jul 2018, 2:51 PM
Narik