HostingTest.LangSetup.LangSetup C# (CSharp) Method

LangSetup() static private method

static private LangSetup ( ) : System
return System
        static LangSetup() {
            Python = new LangSetup( new[] { "IronPython","Python","py" },new[] { ".py" }, "IronPython 3.0",
                "IronPython.Runtime.PythonContext", "IronPython, Version=3.0.0.0, Culture=neutral"
            );

            Ruby = new LangSetup( new[] { "IronRuby", "Ruby", "rb" }, new[] { ".rb" },"IronRuby",
                "IronRuby.Runtime.RubyContext", "IronRuby, Version=1.1.4.0, Culture=neutral"
            );
        }

Same methods

LangSetup::LangSetup ( string names, string exts, string displayName, string typeName, string assemblyString ) : System