[Solved] c# ” is a variable but is used as a type. How can i solve this issue?


public ActionResult Details()
{
    var checkingAccount = new CheckingAccount {AccountNumber = "0000123456", FirstName = "Michael", LastName = "Sullivan", Balance = 500 };
    return View(checkingAccount);
}

solved c# ” is a variable but is used as a type. How can i solve this issue?