C#: Make TSimpleServer a public class.


git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665630 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/lib/csharp/src/Server/TSimpleServer.cs b/lib/csharp/src/Server/TSimpleServer.cs
index ff59fc3..f120dff 100644
--- a/lib/csharp/src/Server/TSimpleServer.cs
+++ b/lib/csharp/src/Server/TSimpleServer.cs
@@ -20,7 +20,7 @@
 	/// <summary>
 	/// Simple single-threaded server for testing
 	/// </summary>
-	class TSimpleServer : TServer
+	public class TSimpleServer : TServer
 	{
 		private bool stop = false;
 		public TSimpleServer(TProcessor processor,