Fixed a bunch of inconsistent/wrong line endings in the C# part, no other changes
diff --git a/lib/csharp/test/ThriftTest/TestServer.cs b/lib/csharp/test/ThriftTest/TestServer.cs
index ceb4368..8a4e605 100644
--- a/lib/csharp/test/ThriftTest/TestServer.cs
+++ b/lib/csharp/test/ThriftTest/TestServer.cs
@@ -115,26 +115,26 @@
 				}
 				Console.WriteLine("})");
 				return thing;
-			}

-

-            public Dictionary<string, string> testStringMap(Dictionary<string, string> thing)

-            {

-                Console.WriteLine("testStringMap({");

-                bool first = true;

-                foreach (string key in thing.Keys)

-                {

-                    if (first)

-                    {

-                        first = false;

-                    }

-                    else

-                    {

-                        Console.WriteLine(", ");

-                    }

-                    Console.WriteLine(key + " => " + thing[key]);

-                }

-                Console.WriteLine("})");

-                return thing;

+			}
+
+            public Dictionary<string, string> testStringMap(Dictionary<string, string> thing)
+            {
+                Console.WriteLine("testStringMap({");
+                bool first = true;
+                foreach (string key in thing.Keys)
+                {
+                    if (first)
+                    {
+                        first = false;
+                    }
+                    else
+                    {
+                        Console.WriteLine(", ");
+                    }
+                    Console.WriteLine(key + " => " + thing[key]);
+                }
+                Console.WriteLine("})");
+                return thing;
             }
 
 			public THashSet<int> testSet(THashSet<int> thing)