i have question about C# Controller. How to call inner class in C# Controller? For example, i wish to call AdminController.Inner.Call() from JavaScript.
public class AdminController { public class Inner { public JsonResult Call() { } } }
Thanks for answers!
Everything what i read i know. This is just example, i need this for large project, about 3000 lines. If i have 5 functions for one page, i want to join it to one class, separately from others. And so others functions make same way.