标识符预期

use*_*239 -4 c# asp.net-mvc-3

我收到一个错误,告诉我有预期的标识符?

码:

[HttpPost]
public ActionResult EditProduct(int id, FormCollection collection)
{
    ProductRepository repo = new ProductRepository();
    var product = repo.GetProductID(id);

    string Pid = collection["Pid"];
    string name = collection["PName"];
    string type = collection["PType"];
    string deal = collection.["PDeal"];
    string desc = collection.["PDescription"];
    string price = collection.["PPrice"];
    repo.Save();

    return View("index");
}
Run Code Online (Sandbox Code Playgroud)

Chr*_*isF 7

.在这三行中有一个额外的:

string deal = collection.["PDeal"];
string desc = collection.["PDescription"];
string price = collection.["PPrice"];
Run Code Online (Sandbox Code Playgroud)