在ASP.NET Contoller中创建私有类

时间:2019-04-01 19:23:25

标签: asp.net

我想在控制器内部创建一个私有类,并在同一控制器的GET和POST方法中使用它

namespace Proj.SampleContollers
{
    public class SampleController: ControllerBase
    {
        private class TestClass {
            private t1 { get; set; }
            private t2 { get; set; }
        }

        [HttpPost]
        public ActionResult<Resp> Post(TestClass test) // Error: inconsistent accessibility
        {
            // use test.t1, test.t2; // Error: inconsistent accessibility
        }
    }
}

是否可以像上面那样创建一个私有类并在控制器内使用它?

0 个答案:

没有答案