Merge pull request #1659 from alexanderkyte/stringbuilder-referencesource
[mono.git] / mcs / class / corlib / System.Runtime.Remoting.Messaging / MethodCallDictionary.cs
index cd21042befada36195dba9cfe14bc5e06c992f6a..43b82f9ce804f0c95876a21e6fd0f912f9fe3ebb 100644 (file)
@@ -4,7 +4,7 @@
 // Author: Lluis Sanchez Gual (lluis@ideary.com)
 //
 // 2003 (C) Lluis Sanchez Gual
-//\r
+//
 
 //
 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
-\r
-using System;\r
-\r
-namespace System.Runtime.Remoting.Messaging\r
-{\r
-       internal class MethodCallDictionary : MethodDictionary\r
-       {\r
-               public static string[] InternalKeys = new string[] {"__Uri", "__MethodName", "__TypeName", "__MethodSignature", "__Args", "__CallContext"};\r
-\r
-               public MethodCallDictionary(IMethodMessage message) : base (message)\r
-               {\r
-                       MethodKeys = InternalKeys;\r
-               }\r
-       }\r
-}\r
+
+using System;
+
+namespace System.Runtime.Remoting.Messaging
+{
+       internal class MCMDictionary : MessageDictionary
+       {
+               public static string[] InternalKeys = new string[] {"__Uri", "__MethodName", "__TypeName", "__MethodSignature", "__Args", "__CallContext"};
+
+               public MCMDictionary(IMethodMessage message) : base (message)
+               {
+                       MethodKeys = InternalKeys;
+               }
+       }
+}