Music Store MVC3チュートリアルのShoppingCartクラスでこのコードを見ました:http ://www.asp.net/mvc/tutorials/mvc-music-store
// We're using HttpContextBase to allow access to cookies.
public string GetCartId(HttpContextBase context)
{
if (context.Session[CartSessionKey] == null)
{
if (!string.IsNullOrWhiteSpace(context.User.Identity.Name))
{
context.Session[CartSessionKey] =
context.User.Identity.Name;
}
else
{
// Generate a new random GUID using System.Guid class
Guid tempCartId = Guid.NewGuid();
// Send tempCartId back to client as a cookie
context.Session[CartSessionKey] = tempCartId.ToString();
}
}
return context.Session[CartSessionKey].ToString();
}
なぜGUIDが必要なのですか?この例で何に使用されているのか、誰かに説明してもらいたいと思います。