IronRuby.Compiler.Methods.CreateMutableString C# (CSharp) Метод

CreateMutableString() публичный статический Метод

public static CreateMutableString ( string suffix ) : MethodInfo
suffix string
Результат System.Reflection.MethodInfo
        public static MethodInfo/*!*/ CreateMutableString(string/*!*/ suffix) {
            Debug.Assert(suffix.Length <= RubyOps.MakeStringParamCount);
            switch (suffix) {
                case "N": return CreateMutableStringN;
                case "M": return CreateMutableStringM;
                case "LM": return CreateMutableStringLM;
                case "ML": return CreateMutableStringML;
                case "MM": return CreateMutableStringMM;
            }
            throw Assert.Unreachable;
        }