From 0eb88132748bba5af1e1001217efa769c089cca9 Mon Sep 17 00:00:00 2001 From: sta Date: Sat, 7 Sep 2013 17:40:03 +0900 Subject: [PATCH] Fix WebHeaderCollection.cs --- websocket-sharp/Net/WebHeaderCollection.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/websocket-sharp/Net/WebHeaderCollection.cs b/websocket-sharp/Net/WebHeaderCollection.cs index cfdbeaa2..817ac93a 100644 --- a/websocket-sharp/Net/WebHeaderCollection.cs +++ b/websocket-sharp/Net/WebHeaderCollection.cs @@ -283,11 +283,11 @@ namespace WebSocketSharp.Net state = (HttpHeaderType) serializationInfo.GetInt32 ("State"); int count = serializationInfo.GetInt32 ("Count"); - count.Times (i => { + for (int i = 0; i < count; i++) { base.Add ( serializationInfo.GetString (i.ToString ()), serializationInfo.GetString ((count + i).ToString ())); - }); + } } catch (SerializationException ex) { throw new ArgumentException (ex.Message, "serializationInfo", ex); }