From 7f916edafa8d54b03494aecb508178e7b670a442 Mon Sep 17 00:00:00 2001 From: sta Date: Sat, 29 Jan 2022 21:36:02 +0900 Subject: [PATCH] [Modify] Polish it --- Example2/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Example2/Program.cs b/Example2/Program.cs index 87f0eb29..645fc4d9 100644 --- a/Example2/Program.cs +++ b/Example2/Program.cs @@ -114,7 +114,7 @@ namespace Example2 s.CookiesValidator = (req, res) => { // Check the cookies in 'req', and set the cookies to send to // the client with 'res' if necessary. - foreach (Cookie cookie in req) { + foreach (var cookie in req) { cookie.Expired = true; res.Add (cookie); }