为什么我的控制器类的这些成员没有初始化?

时间:2015-06-10 21:30:30

标签: c# asp.net asp.net-mvc

我一直在尝试调试看起来像

的控制器
namespace MrProject.Controllers
{
    public class MyController : Controller
    {

        private bool isAuthenticated;
        private string bundleGuid;

        PortalData PD = new PortalData();

        [HttpGet]
        public ActionResult Index(string bguid)
        {
            // bguid: bundle guid, the guid corresponding to one or more assets in the table 


            isAuthenticated = false;
            bundleGuid = bguid;

并且我注意到成员isAuthenticatedbundleGuid没有被行初始化

            isAuthenticated = false;
            bundleGuid = bguid;

为什么?如果我需要发布代码的其他部分,请告诉我。

0 个答案:

没有答案