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

[ad_1]

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

[ad_2]

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