我一直在尝试调试看起来像
的控制器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;
并且我注意到成员isAuthenticated
和bundleGuid
没有被行初始化
isAuthenticated = false;
bundleGuid = bguid;
为什么?如果我需要发布代码的其他部分,请告诉我。