From 2766978f7554efdb53994e8ffa0b37b747bd8282 Mon Sep 17 00:00:00 2001 From: sta Date: Sat, 4 Jan 2014 02:42:03 +0900 Subject: [PATCH] Fix a few --- Example2/Chat.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Example2/Chat.cs b/Example2/Chat.cs index cff3f4ea..c5e59849 100644 --- a/Example2/Chat.cs +++ b/Example2/Chat.cs @@ -27,7 +27,7 @@ namespace Example2 return Context.QueryString ["name"] ?? (_prefix + getNum ()); } - private int getNum () + private static int getNum () { return Interlocked.Increment (ref _num); }